need help removing action from plugin file

前端 未结 6 1631
醉话见心
醉话见心 2021-01-22 03:10

Hello I am trying to remove an action from a wordpress plugin file. The plugin is called Woocommerce Points and Rewards. I have found the action I want to remove in one of the

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-22 04:05

    Try this:

    // Use the class name instead of a globalized $this
    remove_action( 'woocommerce_before_cart', array( 'WC_Points_Rewards_Cart_Checkout', 'render_redeem_points_message' ), 16 );
    

    As $this is an internal referrer to the class it is used in, globalizing it may not be a good thing.

    Does the plugin allow you to extend the class with your own and use it instead?

提交回复
热议问题