Hello,
I need help with the Social Bar in Enfold.
I want to change the frase “share this” to another one. How do I do this?
Thanks.
Fabiana.
Hey Fabiana!
Try adding this at the very end of your theme / child theme functions.php file:
function modify_share_title() {
return "SOMETHING ELSE";
}
add_filter('avia_social_share_title', 'modify_share_title');
Cheers!
Josue
Hi Josue,
Thanks a lot, it worked!
Just a question though.
The phrase I am replacing it with, has a word that uses accent (então), and the word shows a question mark, how to solve this?
Best regards,
Fabiana.
Hey Fabiana!
Try using the HTML entity code:
function modify_share_title() {
return "Então";
}
add_filter('avia_social_share_title', 'modify_share_title');
Best regards,
Josue
Josue,
I am your fan! It worked beautifully!
Thanks once again.
Have a wonderful week.
Fabiana.
You are welcome Fabiana, always glad to help :)
Regards,
Josue