Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #4543991
Change appearance in mini cart
Open

Comments

  •  2
    Jakub started the conversation

    Hi, I would like to change how bundled products appear in mini cart. On mobile version the individual products which are part of the bundle are looking weird (see attached screenshot) - the indentation is just too much. If we could just remove the indentation and have each product appear in a separate line below "Bundled products", that would be much better. I'm also attaching a screenshot from desktop version - it doesn't look that bad but also in this case removing the indentation would make it much better. 

    Is it possible to make a snippet for this please?

    Thank you! 

    Attached files:  IMG_0947.jpeg
      desktop.png

  •  1,688
    Dustin replied

    Hi Jakub,

    Please provide a link to your product bundle so I can review it and write the CSS code to fix that error.

    Best regards,
    Dustin

  •  2
    Jakub replied

    Hi Dustin,

    Thanks for your reply. I'm attaching links: 

    But it's a general problem, not just of these specific bundles. The formatting just doesn't work in the mini cart. If we could put the name of each bundle product on a separate line without any indentation, that would fix it.

    Thanks! 


  •  1,688
    Dustin replied

    I can't access your website. I am from Vietnam. Please unlock my access while I fix this issue for you.

    9446512612.png

     

    Best regards,
    Dustin

  •  2
    Jakub replied

    Hello Dustin, thank you for your reply. I will have to contact my web developer. Is there maybe another way you can access the website (VPN)? Thanks! 

  •  1,688
    Dustin replied

    I tried using TunnelBear and accessing it from Hong Kong, but it still didn't work.

    7969628477.png

    My IP address is: 113.23.43.173

    Best regards,
    Dustin

  •  2
    Jakub replied

    Hi Dustin, sorry for my late reply. I will try to fix it. I will let you know. 

  •  2
    Jakub replied

    Hi Dustin, I think you should be unblocked. Can you please try if it works? Thanks! 

  •  1,688
    Dustin replied

    Please add the CSS code below to WP-Admin → Appearance → Customize → Additional CSS:

    .widget_shopping_cart .woosb-item-parent .variation {
        display: flex;
        flex-direction: column;
    }
    
    .widget_shopping_cart .woosb-item-parent .variation dd ul li {
        padding-left: 0;
        padding-right: 0;
        min-height: 0;
    }

    The result will be like this:

    3116488256.png

    Best regards,
    Dustin

  •  2
    Jakub replied

    Thanks a lot, it works well 😊 

    If I may, there is one last thing I would like to ask since you have been so very helpful. On product page if the product is also part of a bundle, it shows which bundles the product is a part of at the bottom below "add to cart" section (picture attached). That is a great feature, however, I would very much appreciate if I could add a heading or title between the add to cart and the bundle links for the customers to explicitly know that the product is also a part of a bundle. Is that possible please?

    Thanks again!

    Attached files:  Snímka obrazovky 2026-03-06 o 11.56.36.png

  •  1,688
    Dustin replied

    Please add the custom code below. (How to add custom code? ↗):

    add_action( 'woosb_before_bundles', function () {
    	echo '<h3>Bundles containing this product</h3>';
    } );

    The result will be like this:

    1808710333.png

    Best regards,
    Dustin

  •  2
    Jakub replied

    Wonderful! Thanks a lot!

  •  2
    Jakub replied

    Hi Dustin, 

    I'm sorry to bother but I have a technical issue with the plugin - when I set discount manually (not in %), VAT is not subtracted along with the discount. 

    I'm attaching 2 pictures. One showing correct count (when the discount is set in %) and another one which shows incorrect count - the total discount is 9€, but correctly it should be 7,32€ + 1,68€ of VAT (which is in this case 23%). Unless this is correct, I am paying more VAT - as if the products weren't discounted. 

    Thanks a lot in advance.

    Attached files:  incorrect - when discount set manually.png
      correct - when discount set as %.png

  •  2
    Jakub replied

    Hi, can you please help my last issue? Thanks! 

  •  1,688
    Dustin replied

    Yes, that's right. When you set a fixed discount, the plugin won't know which product to deduct it from because each product may have a different VAT rate. Therefore, we set a negative price for the main product to ensure the total is accurate.

    Best regards,
    Dustin

  •  2
    Jakub replied

    Understood. Is there a way to set the negative price manually as two different values (base + VAT) so it counts the VAT correctly, please? Or any other way? Thanks 😊