• Resolved MoDuet

    (@aaronbacon)


    Currently using this plugin. My client would like to customize the “Read More” text within the announcement. Also, is there a way to prevent “Read More” from showing when the announcement does not offer additional information (excerpt only)? I realize both are suggestions but if you offer a way to add these I think both would enhance this plugin.

Viewing 1 replies (of 1 total)
  • Plugin Contributor Code Parrots

    (@codeparrots)

    Hi @aaronbacon,

    I don’t believe there is currently a way to hide the read more on announcements that don’t need it. However, I have gone ahead and added that to our feature board for future releases. That seems like something that should be doable for the next release.

    You can customize the ‘Read More’ text within the announcement using the built-in filters.

    The following should work for you:

    function timeline_express_custom_read_more( $post_id ) {
    
       return 'Custom Read More';
    
    }
    add_filter( 'timeline_express_read_more_text', 'timeline_express_custom_read_more' );

    Let us know if that helps out at all.

Viewing 1 replies (of 1 total)
  • The topic ‘Custom “Read More” Link’ is closed to new replies.