woocommerce_payment_gateways_setting_column_

woocommerce_payment_gateways_setting_column_

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

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('woocommerce_payment_gateways_setting_column_') is found 1 times:

  • /includes/admin/settings/class-wc-settings-payment-gateways.php line 162
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    echo '<tr data-gateway_id="' . esc_attr( $gateway->id ) . '">';
     
    foreach ( $columns as $key => $column ) {
        if ( ! array_key_exists( $key, $default_columns ) ) {
            do_action( 'woocommerce_payment_gateways_setting_column_' . $key, $gateway );
            continue;
        }
     
        $width = '';
     
        if ( in_array( $key, array( 'sort', 'status', 'action' ), true ) ) {