Hi all,
we are using the magazine shortcode to show our blog posts on the home page. we would like to change the link titles (they don´t make sense) but it is not clear where do they come from. screenshot with the titles attached.
Cheers
Katharina
Hi Katharina!
Please go to Enfold/Config-templatebuilder/avia-shortcodes and open Magazine.php file and find
$titleAttr = "title='".__('Link to:','avia_framework')." ".the_title_attribute('echo=0')."'";
and change it to
$titleAttr = "title='".get_the_title($entry->ID)."'";
Regards,
Yigit
Hi Yigit,
it works. Tanks!