Hey!
I would like to change the icon of the FiboSearch impleted via a “RAW Content”-Element in my Header. They provided me with this code to change it:
add_filter( 'dgwt/wcas/form/magnifier_ico', function ( $html, $class ) {
$html = '<i class="fa fa-search ' . $class . '"></i>';
return $html;
}, 10, 2 );
I would like to change it to the icon “o-search
”. Somehow this doesnt work, when replacing fa fa-search
by o-search
. I pasted the code to Header CSS, but nothing changed. Any ideas?
Thanks