Archived topic
New hamburger mobile menu icon
1 reply · Started by Gurer on December 21, 2021
Viewing posts 1–2 of 2
Hi,
Is it possible to change the default hamburger mobile menu iconwith another svg icon?
Thanks
Hi there,
this document provides the PHP Snippet you would require:
https://docs.generatepress.com/article/generate_svg_icon_element/
eg,
add_filter( 'generate_svg_icon_element', function( $output, $icon ) {
if ( 'menu-bars' === $icon ) {
$output = '<svg>Your-custom-menu-bars-icon</svg>';
}
return $output;
}, 10, 2 );
Then swap <svg>Your-custom-menu-bars-icon</svg> for your inline svg
This archived topic is closed to new replies.