Hi,
I want to delete the email field in order to make everyone able to comment without leaving an email.
Please read this FAQ: https://wpdiscuz.com/community/f-a-q/how-to-hide-the-email-field/#:~:text=Just%20click%20on%20the%20%22Default,website%2C%20ReCAPTCHA%2C%20submit).
You can also use the solution provided here: https://ww.wp.xz.cn/support/topic/disable-email-field-2/
Another question I have is if I delete that part, should I have to continue linking the GDPR texts + box since they are only using a name that can be invented? It’s a European website.
We’re not sure about this. This should be decided by website owner.
Hi,
Thanks for your fast reply!
I don’t mind putting it in CSS but the problem is that I don’t know where to find ‘Top Admin Bar > Customize > Additional CSS > “Additional CSS”‘
Do you have any screenshots of that part?
Thanks!
Hi,
Sadly this is the first thing I did (after doing it I cleared all the caches) but it’s not working. The required box option is also disabled but it’s not working.
About the JS, can you explain to me where in functions.php should I put it? I want to disable it in all the entries.
Again, thanks!
Please use try the code provided below:
#wpdcom .wpdiscuz-item.wc_email-wrapper.wpd-has-icon {
display: none !important;
}
Yes, I already saw it.
I want to know where should I add it.
Thanks
You’ve added the following code:
#wpcomm .wc_email-wrapper {
display: none !important;
}
Now I’m asking you remove it and put the following one instead of it:
#wpdcom .wpdiscuz-item.wc_email-wrapper.wpd-has-icon {
display: none !important;
}
This code should be added in the same textarea as mentioned here: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/
Yes! This one worked perfectly!
Thank you!