Allows the text of the submit button on the Pay for Order page to be changed.
__( 'Pay for order', 'woocommerce'
Sortie :
@param string $text The text of the button.
// 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';
}
Chargement des actualités...