Tuesday 15 February 2011

php - Woocommerce remove an action hook -


I am using the woocommerce plugin in my WordPress site. I want to remove a function called 'woocommerce_checkout_coupon_form' which is addicted to the 'woocommerce_before_checkout_form' action

I tried to add the code below in my subject functions. Php

  add_action ('init', 'remove_coupon_text', 10); Function remove_coupon_text () {remove_action ('woocommerce_before_checkout_form', 'woocommerce_checkout_login_form', 10); }  

But is it not working any ideas?

try it

  remove_all_actions ($ Tag, $ priority);  

No comments:

Post a Comment