Theme = Skinny
https://codestag.com/themes/skinny/
I have also tested this with Storefront – same result
With Booster / Products / Sale Flash / Per Product the aim is to create a custom Sale Flash and this works perfectly with archive and product page listings.
With Gutenberg you can insert hand-picked products to appear individually wherever you may choose. If that particular product is on sale the default Sale Flash will display with the listing but unfortunately a custom sale flash created with Booster / Products / Sale Flash / Per Product does not carry through to this area.
I note the containing div for the Gutenberg hand-picked products sale flash has class=”wc-block-grid__product-onsale” which is different than an archive or individual product display sale flash which is targeted with a class of “sale”.
I assume this will also be an issue with Booster / Products / Sale Flash / Globally as well.
I have temporarily solved my issue by using jQuery which is cumbersome
<script>
jQuery(".post-1872 .wc-block-grid__products li:first .wc-block-grid__product-onsale span:first").text($(".post-1872 .wc-block-grid__products li:first .wc-block-grid__product-onsale span:first").text().replace("Sale", "Club Savings"));
</script>
-
This reply was modified 2 years, 7 months ago by
NightL.