Created
February 13, 2021 01:42
-
-
Save MarceloGlez/e4ec7573963d78092c671ff580602c6f to your computer and use it in GitHub Desktop.
Para habilitar el checkbox de crear cuenta en finalizar compra
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
/* Checkbox habilitado crear cuenta en checkout */ | |
add_filter('woocommerce_create_account_default_checked' , function ($checked){ | |
return true; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment