This guide shows you how you can add any custom text below the form fields on the Register form on the My Account page.
/**
* Snippet Name: WooCommerce Custom Text After Register Form Fields
* Snippet Author: ecommercehints.com
*/
add_action( 'woocommerce_register_form', 'ecommercehints_custom_text_after_register_form_fields' );
function ecommercehints_custom_text_after_register_form_fields() {
echo '🤫 Welcome to the club...
';
}