• I found major disadvantages while setting up this plugin, so I moved to the competition.

    ? requires coupon to be turned on – I am not going to use coupons in my shop, so this means a visual disturbance for the customers.
    ? adds an item to the WordPress back-end main menu – I’d expect the plugin to integrate into WooCommerce menu(s)

    However, I liked:
    + easy and well-arranged settings
    + demo available before installing

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support ijas

    (@ijasacodez)

    Sorry for the inconvenience, if you don’t want the coupon box to be appeared on your cart / checkout section, please share your website url so that we can share you the code to disable / hide the coupon box.

    Plugin Support ijas

    (@ijasacodez)

    We have informed the same to our development team and will be adding this functionality on our next update, for the time being your can this code to your themes function.php file to hide the coupon box

    add_filter( 'woocommerce_coupons_enabled', 'HideCouponField' );
    function HideCouponField ( $enabled ) { 
         if ( is_checkout() || is_cart() ) {
             $enabled = false;
         }
         return $enabled;
    }
    Plugin Support ijas

    (@ijasacodez)

    We have added the option to hide coupon, you can check the same on our demo (Pricing Rules -> Settings -> General -> Hide Coupon Box).
    We will be releasing the update (ver 3.7.0) very soon, if needed you can download the latest version from the this link

    Thanks

    Plugin Support ijas

    (@ijasacodez)

    We have released the update with option to disable coupon box (Pricing Rules -> Settings -> General -> Hide Coupon Box), please update your plugin to the latest version.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Requires coupon to be turned on’ is closed to new replies.