Seems like the new used variable is missing for the background-image of both the cart and close icon.
var(--xt-woofc-trigger-close-img-icon)
var(--xt-woofc-trigger-cart-img-icon)
Workaround:
If you upload the svg from the plugin folder (public/assets/img) to your own wordpress media library, you can use custom css to change bot background images to direct to the uploaded icons. Make sure to use !important to override.
span.xt_woofc-trigger-close-icon {
background-image: url("https://www.ijshuys.nl/wp-content/uploads/2020/12/close.svg") !important;
}
span.xt_woofc-trigger-cart-icon {
background-image: url("https://www.ijshuys.nl/wp-content/uploads/2020/12/open.svg") !important;
}
-
This reply was modified 3 years, 11 months ago by mvsambeek.