Tagged: AV share box
Hi,
Is there a way to redefine the AV Share Box? I would like to give it a different title (h5 with class “av-share-link-description”) as I am using the events manager plugin & that uses the look of a post… So somehow I would like to redefine the function and add a custom check (or some css and I’ll do a dirty fix)?
Thanks!
Hey Jurgen!
can you provide us a link to your site showing the elements in question please? we need to be able to inspect the elements.
Best regards,
Andy
Hi Andy,
Thanks for your swift reply! I put the site details in the private section below as the website is still in development :o)
Best regards,
Jurgen
Hey!
Please use the following filter: https://kriesi.at/support/topic/adjusting-text-on-e-mail-social-icon-element/#post-571020
Regards,
Ismael
Hi Ismael,
Thanks for having a look at my question but it does not seem to be a solution for my question: I want to modify the title “Share this entry”, not the (alt text of) the logos under it.
Thanks!
Best regards,
Jurgen
Hey!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avia_social_share_title','avia_new_social_title');
function avia_new_social_title(){
$output = "Here is my new title";
return $output;
}
Best regards,
Yigit
Great!