Home › Forums › Iconic One Pro Support › How to remove the site and e-mail fields from the WordPress comment form.
- This topic has 3 replies, 2 voices, and was last updated 6 years, 4 months ago by Themonic-Support.
- AuthorPosts
- August 31, 2018 at 7:25 am #5294BelluimagParticipant
Hello. I have a question. As in the comments on the WordPress in the Iconic One Pro theme, completely delete the site field, and the e-mail field?
September 1, 2018 at 3:30 pm #5296Themonic-SupportKeymasterEasiest way:
Paste this custom CSS in live customizer Additional CSS section
.comment-form-email, .comment-form-url { display: none; }
Also visit Settings > Discussion > Other Comment Settings to check if comments are allowed without providing email.
Another way, removal from source code using a filter:
Paste the following code in functions.php of Iconic One Pro at the bottom:
function iop_custom_comment_form($fields) { if(isset($fields['email'])) unset($fields['email']); if(isset($fields['url'])) unset($fields['url']); return $fields; } add_filter('comment_form_default_fields', 'iop_custom_comment_form');
September 1, 2018 at 4:06 pm #5297BelluimagParticipantEverything worked! Thank you. But I have one more question. How to change the name to an alias name? I want to change it so that the alias of the commentator is displayed, not the commenter’s name.
September 2, 2018 at 12:16 pm #5298Themonic-SupportKeymasterIt will require custom work, charged extra, contact [email protected] with full requirements for quote.
- AuthorPosts
- You must be logged in to reply to this topic.