Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1414904

    cece101
    Participant

    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?

    #1415543

    cece101
    Participant
    This reply has been marked as private.
    #1415843

    Lely
    Moderator

    Hello 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.