Using FiboSearch with the Astra theme running WooCommerce

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;
} );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.