For a quick, dirty, temporary solution, open file index.php inside the plugin directory:
/wp-content/plugins/you-save-x-for-woocommerce/index.php
On line 229 you will see this:
function thp_ysxfw_you_save_single_product_page() {
Change the above with the following code:
function thp_ysxfw_you_save_single_product_page() {
if (is_home() || is_front_page())
return;
But bear in mind this change will be wiped out once the plugin is updated. So I will add a new option to enable/disable the badge on homepage in the next plugin update.
Thank you, will give it a go. Appreciate the feedback.
P.S I sent a service request email to you on 10Horizons. WProot contact page doesn’t work.