• Resolved adccmin

    (@adccmin)


    1. The “Show sale badge on simple pricing products.” option under product pricing setting doesn’t seem to have any effect which the sale badge is always showing no matter it’s checked or not.
    2. And also the “Sale badge type” option seems to also affect all products with a sale price (manually entered in woocommerce’s product page), not just the products that are under product pricing rules. It’s showing the calculated % off for every product that has a sale price if I selected that option.’

    Please help.

    • This topic was modified 5 months ago by adccmin.
Viewing 1 replies (of 1 total)
  • Plugin Support Emily Wilson

    (@emilywil)

    Hi

    Thank you for choosing our plugin.

    We apologize for the inconvenience.

    The “Show sale badge on simple pricing products.” option under product pricing setting doesn’t seem to have any effect which the sale badge is always showing no matter it’s checked or not.

    You can use the below method to disable the plugin sale and discount badges for the simple pricing rules.

    • Set the “Sale badge type” to “Discount” in the plugin settings – general tab – product pricing section.
    • Add the below function to your child theme.
    function asnp_wccs_sale_flash_discount_value( $html ) {
    return '';
    }
    add_filter( 'wccs_sale_flash_discount_value', 'asnp_wccs_sale_flash_discount_value', 99 );

    Or you can add the below function to disable sale flash of WooCommerce.

    add_filter('woocommerce_sale_flash', 'asnp_hide_sale_flash');
    function asnp_hide_sale_flash()
    {
    return false;
    }

    Another way is to set the “Change Display Price” to “Do not change” and the plugin does not change the product price on the product and archive page for the simple pricing rules but it will apply the discount on the cart to the product prices.

    You can change the “Change Display Price” in the plugin settings – general tab – product pricing section.

    And also the “Sale badge type” option seems to also affect all products with a sale price (manually entered in woocommerce’s product page), not just the products that are under product pricing rules. It’s showing the calculated % off for every product that has a sale price if I selected that option.’

    Yes, it is right and it will shows discount percentage amount for all of onsale products.

    Unfortunately, there is not an option to disable it for onsale products of WooCommerce.

    For the sale badge, you can try our WooCommerce Product Badge and Label plugin too.

    I hope it helps.

    Best Regards

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.