Remove text area in reviews

Hi there Team HP

I refer a snippet on the GitHub depository titled Remove the text field from reviews #hivepress reviews. Remove the text field from reviews #hivepress #reviews · GitHub

<?php
add_filter(
	'hivepress/v1/forms/review_submit',
	function( $form ) {
		unset( $form['fields']['text'] );

		return $form;
	},
	1000
);

add_filter(
	'hivepress/v1/models/review',
	function ( $model ) {
		$model['fields']['text']['required'] = false;

		return $fields;
	},
	1000
);

The snippet doesn’t just remove the text field, it also removes the rating stars which is what we’re try to use as we would like it to just be a ratings system.

Before snippet.

After snippet.
firefox_AG184Y8RuU

Thank you for waiting. Please try this PHP code snippet instead

add_filter(
	'hivepress/v1/forms/review_submit',
	function( $form ) {
		unset( $form['fields']['text'] );

		return $form;
	},
	1000
);

add_filter(
	'hivepress/v1/models/review',
	function ( $model ) {
		$model['fields']['text']['required'] = false;

		return $model;
	},
	1000
);

THANKS Yevhen!

That works better. :upside_down_face:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.