• Hi, im working out all the accessibility issues/warnings in my install and was wondering if on the next update you can add something like

    aria-label="Open Menu"

    To the mobile mega-toggle-animated button

    Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author megamenu

    (@megamenu)

    Hi Segmant,

    I think I would need to think a bit more about this, the only way I can think right now to add it is to add another field to the toggle block so that text can be translated.

    In the mean time please try adding this to your functions.php file:

    function megamenu_animated_toggle_aria_label( $html ) {
    	return str_replace("button ", "button aria-label='Open Menu' ", $html);
    }
    add_filter("megamenu_toggle_menu_toggle_animated_html", "megamenu_animated_toggle_aria_label", 10, 1);
Viewing 1 replies (of 1 total)
  • The topic ‘Aria label on mega-toggle-animated-slider’ is closed to new replies.