WC_Shipping_Legacy_Flat_Rate::process_admin_options()

Process and redirect if disabled.


Description Description


Source Source

File: includes/shipping/legacy-flat-rate/class-wc-shipping-legacy-flat-rate.php

47
48
49
50
51
52
53
54
public function process_admin_options() {
    parent::process_admin_options();
 
    if ( 'no' === $this->settings['enabled'] ) {
        wp_redirect( admin_url( 'admin.php?page=wc-settings&tab=shipping&section=options' ) );
        exit;
    }
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.