• Resolved MaTam

    (@matam)


    The mega menu marks menu items with the <h4> tag. How can you remove this tag?
    Tried a solution like this but it doesn’t help.

    ========
    function megamenu_use_h4_before( $title , $widget ) {
    return ‘<h4>’;
    }
    add_filter( “megamenu_before_widget_title”, “megamenu_use_h4_before”, 10, 2);

    function megamenu_use_h4_after( $title , $widget ) {
    return ‘</h4>’;
    }
    add_filter( “megamenu_after_widget_title”, “megamenu_use_h4_after”

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove h4’ is closed to new replies.