Hi guys!
Is there an option by reviews, to allow only ratings by stars and no comments?
Hi,
Please try these PHP snippets:
add_filter(
'hivepress/v1/models/review',
function($review){
if(isset($review['fields']['text'])){
$review['fields']['text']['required'] = false;
}
return $review;
},
1000
);
add_filter(
'hivepress/v1/forms/review_submit',
function($form){
unset($form['fields']['text']);
return $form;
},
1000
);
1 Like
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.