I think the default is 5 rows – would like to change to 2.
Thanks for your patience. You can do it like this:
add_filter('site-reviews/config/forms/submission-form', function ($config) {
$config['content']['rows'] = 2;
return $config;
});
Just one more question – can you tell me how to change the border radius of the submit review button? Thanks
Have you tried using some custom CSS?
.glsr-button {
border-radius: 10px;
}
You can also try changing the “Plugin Style” option in the settings.

See also: https://ww.wp.xz.cn/support/topic/how-to-configure-forms-using-plugins/#post-12837039