This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: WP/ Search not populating

#57164
opusuno_qeTzopusuno_qeTz
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’ ) );
}

});