Change message of "WooCommerce Force Authentification Before Checkout" plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
english: put the below code in your functions.php | |
português: coloque o código abaixo no seu functions.php ou siga este guia: https://bit.ly/2Nn0SvD | |
*/ | |
add_filter( 'wc_force_auth_message', function ( $message ) { | |
return 'your new message/sua nova mensagem'; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment