Created
January 12, 2015 14:31
-
-
Save woogist/5a60fd66fa29d932c1a9 to your computer and use it in GitHub Desktop.
Add a notice in the registration form
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
add_action( 'woocommerce_register_form_start', 'wc_registration_notice_vendors' ); | |
function wc_registration_notice_vendors() { | |
echo __( '<p><strong>Warning</strong>: Please register using the same email of your PayPal.com account.</p>', 'localization-domain' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment