How to Disable Reviews Search Field
The plugin displays a field to search reviews on WooCommerce products pages when Lazy Load Reviews option is enabled. The search field is displayed by default. However, it can be disabled (removed), if necessary.
If you would like to disable the reviews search field, please ask the developer who looks after your website to implement the following code snippet in functions.php file of your current theme.
function my_cr_ajaxreviews_show_search( $show_search ) {
return false;
}
add_filter( 'cr_ajaxreviews_show_search', 'my_cr_ajaxreviews_show_search', 10, 1 );