Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1356349

    On my site – https://laserclinicsasia.com.sg/blog/ – I have a blog posts grid layout, how can I change Blog Grid Button Text from READ MORE to TELL ME MORE

    #1356370

    Hey navindesigns,

    Thank you for the inquiry.

    You have to manually edit the read more text in the enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php file around line 827. Look for this code.

    $permalink = '<div class="read-more-link"><a href="' . get_permalink( $the_id ) . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . '<span class="more-link-arrow"></span></a></div>
    ';
    

    Best regards,
    Ismael

    #1356379

    or put this to your child-theme functions.php:

    function my_text_strings( $translated_text, $text, $domain ){
    switch ( $translated_text ){
        case 'Read more'    :  $translated_text = __( 'Tell me more', $domain ); break;
      }
      return $translated_text;
    }
    add_filter('gettext', 'my_text_strings', 20, 3);
    #1356492

    PERFECT
    thank u so much

    #1356499

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Change Blog Grid Button Text from READ MORE to TELL ME MORE’ is closed to new replies.