Remove field site on generatepress themes
-
Hi,
the option Remove field “site” in comment form does not work for generatepress themes.
I found this on the developer site. Maybe you cann add it to your remove field site function.add_action( 'after_setup_theme', 'tu_add_comment_url_filter' ); function tu_add_comment_url_filter() { add_filter( 'comment_form_default_fields', 'tu_disable_comment_url', 20 ); } function tu_disable_comment_url($fields) { unset($fields['url']); return $fields; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Remove field site on generatepress themes’ is closed to new replies.