How do we add title “attrib” to sub menu items in a mega menu? There is no option to the right like parent items have. I have checked the screen options tab and there is nothing there.
I am using latest build 2.6.1
I don’t want to have to hand code each title with this if I can avoid it. Would be nice to have this option for SEO purposes.
Any ideas?
Hey AntonNovikov!
I think Kriesi just hided it because of styling reasons. If you want to show the field just insert this code into your child theme functions.php file:
add_action('admin_print_scripts', 'avia_gravity_forms_admin');
function avia_gravity_forms_admin()
{
echo "<style type='text/css'>";
echo "
.avia_mega_active.menu-item-depth-2 .description-title, .avia_mega_active.menu-item-depth-3 .description-title{
display: block;
}";
echo "</style>";
}
Cheers!
Peter
Thanks, I will add to my list of edits. Works now!