mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://help.cusrev.com/support/solutions/articles/43000609035-how-to-disable-reviews-search-field
4 lines
160 B
Text
4 lines
160 B
Text
function my_cr_ajaxreviews_show_search( $show_search ) {
|
|
return false;
|
|
}
|
|
add_filter( 'cr_ajaxreviews_show_search', 'my_cr_ajaxreviews_show_search', 10, 1 );
|