[Support request] New hamburger mobile menu icon

Home Forums Support [Support request] New hamburger mobile menu icon

Home Forums Support New hamburger mobile menu icon

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2055556
    Gurer

    Hi,
    Is it possible to change the default hamburger mobile menu iconwith another svg icon?
    Thanks

    #2055862
    David
    Staff
    Customer Support

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.