• Resolved infoudoy

    (@infoudoy)


    I want to change […] to Read more text

    I added the codes in functions.php file. but not working

    add_filter( 'the_content_more_link', 'sp_read_more_link' );
    
    function sp_read_more_link() {
    	return '<a class="more-link" href="' . get_permalink() . '">[Read More]</a>';
    
    }
    
    
Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support Darian

    (@d0153)

    Hi @infoudoy

    Thanks for reaching out. Let me help you with this one.

    I think the best way to do that is through template override. Specifically, you need to override this template

    the-events-calendar/src/views/v2/components/read-more.php

    and copy it to

    [your-theme]/tribe/events/v2/components/read-more.php

    If the file already exists in your theme folder, you’ll just need to edit it and replace the […]

    I hope this helps, and please let me know if you have further questions or concerns.

    Thread Starter infoudoy

    (@infoudoy)

    Hi Darian,
    I added the file in my child theme. but it is not working. What do I need to edit?

    Please check my event page: https://dev.picacorp.com/events/

    Thank you.

    • This reply was modified 9 months, 1 week ago by infoudoy.
    Plugin Support iammarta

    (@iammarta)

    Hi @infoudoy,

    Kindly try adding following lines of code to functions.php file of your theme,

    add_action( 'tribe_template_after_include:events/v2/list/event/description', function ( $file, $name, $template ) { echo "<a href=" . tribe_get_event_link() . ">Read more...</a>"; }, 10, 3   );
    Thread Starter infoudoy

    (@infoudoy)

    Hello @iammarta,

    Now show the Read more link.

    But i want to remove […]. How can i remove it”[…]”

    Thanks for your helping.

    • This reply was modified 9 months, 1 week ago by infoudoy.
    • This reply was modified 9 months, 1 week ago by infoudoy.
    Plugin Support Darian

    (@d0153)

    Hi @infoudoy

    Please try the following if it works for you:

    function change_more_text(){
    	//change the value to blank if you want to remove [...];
    	return ' [read more] ';
    }
    
    add_filter( 'excerpt_more', 'change_more_text',99);
    Thread Starter infoudoy

    (@infoudoy)

    It is working. Thank you so much

    Plugin Support Darian

    (@d0153)

    Hi @infoudoy

    Thanks for your confirmation and I’m glad that it is now working.

    If you have a minute, a great review from you would be amazing!

    https://www.ads-software.com/support/plugin/the-events-calendar/reviews/

    I’ll close this thread for now, but please do not hesitate to start a new thread if you have other issues at all. This allows us to track topics/issues efficiently and follow the WordPress Forum Guidelines.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Change […] to Read more text’ is closed to new replies.