Hi!
I have two things that I was unable to change, can you please give me a hand?
https://www.staging.optika-kobacic.hr/katalog/ray-ban-ray-ban-8901-5244/
1.
I want to change the magnifying glass icon. I have tried this:
.woocommerce-product-gallery__trigger .emoji {
display: none !important;
}
.woocommerce-product-gallery__trigger {
font-family: "FontAwesome";
font-style: normal;
font-weight: normal;
text-decoration: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
color:#000
}
.woocommerce-product-gallery__trigger:before {
content: "\f002";
}
However, it seems that the .emoji class isn’t getting applied. Emojis are not disabled on the site.
2.
I have tried to change the “Related products” and “You may also like” text. It seems it doesn’t take effect:
This is in the Child theme:
add_filter('gettext', 'x_translate_text1' );
function x_translate_text1($translated) {
$translated = str_ireplace('Related products', 'Možda nešto slično?', $translated);
$translated = str_ireplace('You may also like', 'Pogledajte još...', $translated);
return $translated;
}
Perhaps because the site language is not English?
Thanks!