You guys should post more tutorial videos on the internet about magic I can do with snippets for e commerce
It worked with Code Snippet:
add_filter( ‘pre_get_posts’, function ( $query ) { if ( is_post_type_archive( ‘product’ ) && $query->is_search && ! is_admin() ) { $query->set( ‘post_type’, [‘any’] ); } return $query; } );
Cheers