I have turned on the option to show discounts in the cart, but the discounts are not showing in the cart in my theme. What can I do?
If you have some HTML knowledge, you can add the class on the correct element on your cart page.
Here is the list of HTML classes which can be used to pinpoint the correct elements in your cart:
  • bundler-cart-price-info-container <- Will contain the original cart total, discount value and discounted cart total. Each value will be displayed in it's own line.
  • bundler-cart-price-info-container-inline <- Will contain the original cart total and discounted cart total. The values will be displayed in the same line.
  • bundler-cart-total-original <- Will contain the crossed out original cart total.
  • bundler-cart-total-discounted <- Will contain the discounted cart total.
  • bundler-cart-discount-value <- Will contain the total bundle discount value with a minus symbol in front of it.
  • bundler-cart-discount-value-no-minus <- Will contain the total bundle discount value without a minus symbol in front of it.
  • bundler-cart-discount-percent <- Will contain the total discount percent the customer got with the bundle discounts.
  • bundler-cart-show-on-discount <- Can be used to show a specific element only when Bundler can apply a discount on items in the cart.
Here is an example of the HTML code where the app will display the bundle discounts in the cart.
Cart total: <span class="bundler-cart-total-original"></span>
<br />
Bundle discounts: <span class="bundler-cart-discount-value"></span>
<br />
New cart total: <span class="bundler-cart-total-discounted"></span>
If you don't feel comfortable editing your theme or can't do it for other reasons, you can contact us and we will check if we can make the app compatible with your theme from our side.