Tag: discount

  • How to create Custom Coupon Types in WooCommerce

    Coupons are one of WooCommerce’s greatest assets; everyone loves a discount. However, the default types and restrictions may not be exactly what you’re looking for and you may need to extend the functionality. After being recently commissioned to extend the coupon functionality of a stable (all be it old), 2.3.11 installation, finding the right places to hook into…

  • woocommerce_coupon_discount_types

    Intercept the coupon types and do what you will, add or remove as you see fit. [php] <?php function webdav_newcoupon_type ($discount_types) { // Custom Code here return $discount_types; } add_filter (‘woocommerce_coupon_discount_types’, ‘webdav_newcoupon_type’, 10, 1); ?> [/php]