Site logo

Archived topic

Replace slide-out exit SVG icon

3 replies · Started by Dominik on December 3, 2020

Viewing posts 1–4 of 4

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.