I am using multiple comment forms for different pages and on one page I want to hide the email field to not be displayed on that specific page. How can I do that?
Hi @sunny,
I suggest you create a new comment form with hidden email field and display the comment form for the specific page using its ID. More info here:
hi @astghik how do I make the email field hidden? I can't see any option to hide the email field in the backend, can you send some screenshots?
ah @sunny,
I've forgotten to mention that there is no option to hide the default name and email fields. The only way to hide those fields is CSS code, that should be added in "Custom CSS" textarea of the current form, that is used for specific pages.
The CSS code is:
.wpdiscuz-item.wc_email-wrapper.wpd-has-icon {
display: none !important;
}
Screenshot here:
Great! Thanks.
Please forget to set the email field not required before hiding.
More info here: https://wpdiscuz.com/docs/wpdiscuz-documentation/getting-started/custom-comment-form/comment-form-builder/