Tagged: x
-
AuthorPosts
-
March 21, 2017 at 8:43 am #1414904
Looking to add text below the gallery plugin on ALL individual project pages. Using Easy Image Gallery plugin to add images below text on individual project pages – see example – http://www.stoercon.com/portfolio/cabria-hotel-175-room-hotel-santana-row-ca/
Below the images on every project page I would like to add a contact sentence like:
Email Stoer info@stoercon.com or call 408.600.0818 to get started on your project.
How can I achieve this when the gallery adds images to the bottom of the text automatically?
March 21, 2017 at 5:21 pm #1415543This reply has been marked as private.March 22, 2017 at 1:01 am #1415843Hello There,
Thank you for the complete details.
We can add this code on your child theme’s functions.php file:add_filter( 'the_content', 'add_content_after_single_portfolio' ); function add_content_after_single_portfolio($content){ if ( is_singular('x-portfolio') ) { $content .= "<p>Email Stoer info@stoercon.com or call 408.600.0818 to get started on your project.<p>"; } return $content; }
Hope this helps.
-
AuthorPosts