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
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
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);
PERFECT
thank u so much
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