Skip to content

Instantly share code, notes, and snippets.

@woogist
Created January 12, 2015 14:31
Show Gist options
  • Save woogist/5a60fd66fa29d932c1a9 to your computer and use it in GitHub Desktop.
Save woogist/5a60fd66fa29d932c1a9 to your computer and use it in GitHub Desktop.
Add a notice in the registration form
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