Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #241392

    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?

    #242281

    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

    #242342

    Thanks, I will add to my list of edits. Works now!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘title attrib in sub menu items in a mega menu not available’ is closed to new replies.