Archived topic
Links do not have a discernible name
5 replies · Started by Stefan on October 7, 2020
Viewing posts 1–6 of 6
Lighthouse gives me a failing element <a href="#"> for the slideout-toggle because I use no toggle label.
Hi there,
I wonder if adding an aria-label will help.
Any chance you can link us to your site?
sure
Try this:
add_filter( 'generate_off_canvas_toggle_output', function() {
$svg_icon = '';
if ( function_exists( 'generate_get_svg_icon' ) ) {
$svg_icon = generate_get_svg_icon( 'pro-menu-bars' );
}
return sprintf(
'<span class="menu-bar-item slideout-toggle hide-on-mobile %2$s"><a href="#" aria-label="Open Off-Canvas Panel">%1$s</a></span>',
$svg_icon,
$svg_icon ? 'has-svg-icon' : ''
);
} );
Then adjust the aria-label if needed.
Let me know :)
Worked, thanks!
You're welcome :)
This archived topic is closed to new replies.