This topic has 2 replies, 2 voices, and was last updated 1 days, 20 hours ago ago by Luca Rossi
I’m using the custom registration page, but don’t want users to just be able to register with email alone in the registration tab, in the dropdown on the my account. (I know I can hide it with css, but that won’t stop bots). Is there a way I can turn this off? When you hover over the account icon, there is the login tab and the register tab. I want to remove the register. Is this possible in the settings?
Dear @pablostevens,
We hope this message finds you well.
Kindly add the following code to the functions.php
file located in your child theme:
add_action('wp', 'n2t_et_custom_query', 99);
function n2t_et_custom_query($query) {
set_query_var('et_account-registration', false);
}
We hope this resolves your query. Should you have any further questions or require additional assistance, please do not hesitate to reach out.
Best regards,
The 8Theme Team
You must be logged in to reply to this topic.Log in/Sign up