Archived topic
Replace slide-out exit SVG icon
3 replies · Started by Dominik on December 3, 2020
Viewing posts 1–4 of 4
Hi there,
how can I replace the slide-out exit SVG icon similar to https://generatepress.com/forums/topic/how-to-change-3-bar-menu-icon-to-better-one/#post-960666 ?
Thanks
Dominik
Hi,
You can try this PHP snippet
add_filter( 'generate_svg_icon', function( $output, $icon ) {
if ( 'pro-close' === $icon ) {
$output = 'YOUR ICON HERE, either <svg> or <img>';
}
return $output;
}, 10, 2 );
Hi Elvin,
THANKS! :D
Dominik
No problem. :)
This archived topic is closed to new replies.