Using FiboSearch with the Astra theme running WooCommerce on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter( 'dgwt/wcas/form/html', function($html) {
if ( is_checkout() || is_cart() ) {
$html = str_replace( " woocommerce ", " ", $html );
}
return $html;
} );