Get Professional Customization for any Website!
Contact us here for a free quote.

Okay
  Public Ticket #573289
Results Page Ellipses
Closed

Comments

  • Lee started the conversation

    How do I link the ellipses at the end of the page description on the results page?

    The page name is linked, but the ellipses are dead.

    Play

    September 4, 2015/ by [email protected]

    Holiday Ice in Carolina Wren Park ice skating daily November 20, 2015 through January 18, 2016 Holiday Tree Lighting and downtown Open Houses Friday, December 4, 2015, 6 pm Christmas Parade in downtown along Main Street Sunday, December 6, 2015, 3 pm Movies in the Park featuring “Elf” Tuesday, December 8, 2015, 6 pm 2016 […]

  •  184
    George replied

    Add the next function to functions.php file.

    function eclipse_new_excerpt_more( $more ) {
        return \' <a class=\"read-more\" href=\"\' . get_permalink( get_the_ID() ) . \'\">\' . __( \'[ Read More ]\', \'gb-framework\' ) . \'</a>\';
    }
    add_filter( \'excerpt_more\', \'eclipse_new_excerpt_more\' );

    Best regards,

    George

  • Lee replied

    That worked.

    I\'m using a child theme but it inherits templates from a parent theme. Will the new functions be overwritten if the parent function is updated? If so, how can it be prevented?

    Thanks

  •  184
    George replied

    Add this function also to the parent theme functions.php file.

    Best regards,

    George