woocommerce_update_options_

woocommerce_update_options_

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('woocommerce_update_options_') is found 2 times:

  • /includes/admin/class-wc-admin-settings.php line 91
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    }
     
    // Trigger actions.
    do_action( 'woocommerce_settings_save_' . $current_tab );
    do_action( 'woocommerce_update_options_' . $current_tab );
    do_action( 'woocommerce_update_options' );
     
    self::add_message( __( 'Your settings have been saved.', 'woocommerce' ) );
    self::check_download_folder_protection();
     
    // Clear any unwanted data and flush rules.
  • /includes/admin/settings/class-wc-settings-page.php line 548

    Warning: Undefined array key 553 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
                    $section_id = $current_section;
                }
     
                if ( $section_id ) {
                    do_action( 'woocommerce_update_options_' . $this->id . '_' . $section_id );
                }
            }
        }
     
    endif;