Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › WP/ Search not populating › Reply To: WP/ Search not populating
March 26, 2026 at 12:20 am
#57164
Participant
Hi Ernest,
Back to this.. customer is complaining. I don’t think it’s your plugin, but I was wondering if there might be a way to remove the generatepress magnifying glass / search and add your search to the main nav? Thanks.
Here’s a link again so you can see the behavior https://capriolas.com
I reached out to GP and they told me to add this snippet.. but same results
add_action( ‘pre_get_posts’, function( $query ) {
if ( ! is_admin() && $query->is_main_query() && $query->is_search() ) {
// Only show WooCommerce products
$query->set( ‘post_type’, array( ‘product’ ) );
}
});