This quick guides shows you how you can add any custom text under the Register Form heading, above the form fields on the My Account page. By adding custom text above the register form fields on the my account page, you can communicate to customers important information about registering for an account.
/**
* Snippet Name: WooCommerce Custom Text Before Register Form Fields
* Snippet Author: ecommercehints.com
*/
add_action( 'woocommerce_register_form_start', 'ecommercehints_custom_text_before_register_form_fields' );
function ecommercehints_custom_text_before_register_form_fields() {
echo '🤫 Welcome to the club...
';
}