Hi there,
We use Rebuy’s Smart Cart Shipping Bar feature that appears in the cart drawer. We want to hide it on one particular product because that product does not qualify for free shipping. Rebuy gave me the solution below, but I need assistance in adding the product to the code, and knowing exactly where to place it. Screenshot of cart below.
To hide the shipping bar when certain products are in the cart, you can use custom CSS in combination with JavaScript. First, you need to identify the specific products you want to trigger the hiding of the shipping bar. Then, you can use JavaScript to check if those products are in the cart and apply the custom CSS to hide the shipping bar accordingly. Here’s an example of the CSS you can use to hide the shipping bar:
.rebuy-cart__progress-bar-container {
display: none !important;
}
