• Resolved kroma

    (@kroma)


    Hello,
    Is there any way to remove all actions/filters which are on checkout?
    I don’t want to have any changes from Woocommerce Germanized done on checkout page.
    Thanks in advance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author vendidero

    (@vendidero)

    Hi there,

    you may find all our checkout related hooks within:
    woocommerce-germanized/includes/wc-gzd-template-hooks.php

    You may remove them via remove_action/remove_filter.

    Cheers

    Thread Starter kroma

    (@kroma)

    Thanks for your reply but I’ve already did (I think all of them are checkout related, right?) and some of the changes WCC makes are still there

    https://paste.ofcode.org/pwSpXjrR2zxkGFTQ42sVTD

    Or im missing something?

    Plugin Author vendidero

    (@vendidero)

    Hi,

    some of the hooks are being executed within the “init” hook, so you might need to call remove_action there as well, e.g.:

    add_action( 'init', 'my_child_adjust_hooks', 100 );
    
    function my_child_adjust_hooks() {
       // call remove_action
    }

    Cheers

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove checkout actions/filter’ is closed to new replies.