WooCommerce | Add text to my-account > login
add_action(‘woocommerce_before_customer_login_form’, ‘custom_login_message’); function custom_login_message() { echo ‘ Welcome! Please log in to access your account. Note: A valid subscription is required to access your account. ‘; }Continue reading