This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @Title: Wocommerce apply coupon automatically to the cart for specific products | |
* @Author: Mina Pansuriya | |
* @Blog URL :http://minapansuriya.com/wocommerce-apply-coupon-automatically-to-the-cart-for-specific-products/ | |
**/ | |
add_action( 'woocommerce_before_cart', 'pbs_apply_auto_discount_coupons' ); | |
function pbs_apply_auto_discount_coupons() { | |
global $woocommerce; |
OlderNewer