Force search to be for products in Relevanssi

Force search to be for products in Relevanssi on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'relevanssi_modify_wp_query', function( $query ) {
  $query->set( 'post_type', 'product' );
  return $query;
} );