GeoDirectory SupportRemove web field from reviews form – GeoDirectory Support https://wpgeodirectory.com/support/topic/remove-web-field-from-reviews-form/feed Sun, 05 Apr 2026 19:43:55 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/remove-web-field-from-reviews-form/#post-27944 <![CDATA[Remove web field from reviews form]]> https://wpgeodirectory.com/support/topic/remove-web-field-from-reviews-form/#post-27944 Mon, 19 Jan 2015 10:10:55 +0000 P O I want to remove the web field from the review form. That leads to spam usually, so for me its better to not have a web field there.

How to remove it ?

Thanks.

]]>
https://wpgeodirectory.com/support/topic/remove-web-field-from-reviews-form/#post-27945 <![CDATA[Reply To: Remove web field from reviews form]]> https://wpgeodirectory.com/support/topic/remove-web-field-from-reviews-form/#post-27945 Mon, 19 Jan 2015 10:57:10 +0000 Stiofan O'Connor Hi PO,

This is not really a specific GD question, a quick google and you would have found the answer in seconds 🙂

Add this to your child theme functions.php file


add_filter('comment_form_default_fields', 'my_url_filtered');
function my_url_filtered($fields)
{
  if(isset($fields['url']))
   unset($fields['url']);
  return $fields;
}

Thanks,

Stiofan

]]>
https://wpgeodirectory.com/support/topic/remove-web-field-from-reviews-form/#post-27961 <![CDATA[Reply To: Remove web field from reviews form]]> https://wpgeodirectory.com/support/topic/remove-web-field-from-reviews-form/#post-27961 Mon, 19 Jan 2015 11:56:25 +0000 P O That worked. I thought that the form was a specific GD custom one.

Thank you.

]]>