Skip to content
Code snippets
Search
About us
January 11, 2021
Remove Website field from Post comments
Description:
add_filter( ‘comment_form_default_fields’, function($fields ) {
unset( $fields[‘url’] );
return $fields;
}, 11 );
Kind:
Beaver
URL:
https://docs.wpbeaverbuilder.com/bb-theme/defaults-for-layouts-content/blog-settings/remove-website-field-url-from-post-comments
Posts navigation
← Add qty inputs next to add to cart button with and without Ajax reload on WooCommerce archives
Remove website from comment form →