I think I found a small bug in the magazine element.
While hovering over the magazine-title you see a tooltip with the text “Link to: <put your current page title here>”.
Shouldn’t there be a dynamic tooltip which tells us where we’re really going to?
I saw this behaviour as well on my own site (http://www.becxtuinmachines.nl/) as on the enfold demo page (http://kriesi.at/themes/enfold/homepage/home-v10-magazine/)
Is there a simple workaround to fix this, or do I have to wait until kriesi fixes this in a next enfold update?
Hey becx!
Please go to Enfold/Config-templatebuilder/avia-shortcodes folder 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)."'";
Cheers!
Yigit
Super, it’s fixed now!