woocommerce_pay_order_button_text

FILTER woocommerce\includes\shortcodes\class-wc-shortcode-checkout.php (ligne 208) github
Allows the text of the submit button on the Pay for Order page to be changed.

Paramètres

Entrée :
__( 'Pay for order', 'woocommerce'
Sortie :
@param string $text The text of the button.

Utilisation

// Modifier la valeur avec le filtre 'woocommerce_pay_order_button_text'
add_filter('woocommerce_pay_order_button_text', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre(__( 'Pay for order') {
    // Modifier la valeur
    return __( 'Pay for order';
}

Actualités

Chargement des actualités...