Tagged: wpml
Small fix for WPML compatibility. The “Home” item on the fallback menu needs to be wrapped for string translation in framework/php/class-megamenu.php line 624:
reads:
echo "<li $current><a href='".get_bloginfo('url')."'>Home</a></li>";
and should read:
echo "<li $current><a href='".get_bloginfo('url')."'>".__("Home",'enfold')."</a></li>";
Hi yogaboy!
Great, thank you. I’ll add this fix to the theme code.
Regards,
Peter
Super – thanks!