Archived topic
Search button issue
5 replies · Started by Adrien on October 10, 2020
Hello GP Team,
When I'm reaching this page shown on the screenshot, the search button does not show.
Do you think you could help me solving this?
Thank you very much
Hi there,
can you try changing Customizer > General > Icon Type to SVG. And then clear your caches. Let us know.
Thank you David for your help. It works.
However, when I do this it affect this icon on the site. Here is the screenshot:
https://tinyurl.com/y6as7mvw
Can we replace this icon by an SVG?
Edit the Hook Element ( in Appearance Elements ) titled: Woocommerce Shop Filter and Breadcrumb. And replace the content with this:
<?php
$icon = '';
if ( function_exists( 'generate_get_svg_icon') ) {
$icon = generate_get_svg_icon( 'menu-bars' );
}
?>
<span class="slideout-toggle woo-filter-toggle hide-on-mobile has-svg-icon"><a href="#"><?php echo $icon; ?> FILTER</a></span>
<span class="hide-on-mobile"><?php woocommerce_breadcrumb(); ?></span>
Dear David, Thank you so much it worked like a charm!
Glad to hear that.