woocommerce_settings_form_method_tab_

woocommerce_settings_form_method_tab_

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_settings_form_method_tab_') is found 1 times:

  • /includes/admin/views/html-admin-settings.php line 43
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    ?>
     
    <div class="wrap woocommerce">
        <?php do_action( 'woocommerce_before_settings_' . $current_tab ); ?>
        <form method="<?php echo esc_attr( apply_filters( 'woocommerce_settings_form_method_tab_' . $current_tab, 'post' ) ); ?>" id="mainform" action="" enctype="multipart/form-data">
            <?php if ( ! $hide_nav ) : ?>
                <nav class="nav-tab-wrapper woo-nav-tab-wrapper">
                    <?php
     
                    foreach ( $tabs as $slug => $label ) {
                        echo '<a href="' . esc_html( admin_url( 'admin.php?page=wc-settings&tab=' . esc_attr( $slug ) ) ) . '" class="nav-tab ' . ( $current_tab === $slug ? 'nav-tab-active' : '' ) . '">' . esc_html( $label ) . '</a>';