Conversation
supportWe’re using the Custom Boxes plugin to allow people to Pick n Mix (X products for a reduced price) Is there a way to NOT have the qty selector show for products that are selected via the Custom Box? The page I need help with: [ log in to see the link]
Hi @envisiondesign , Thanks for reaching out! If you’re looking to hide the quantity selector for products selected via the Custom Boxes plugin, the easiest solution would be to apply a bit of CSS to hide it visually. You can try adding the following to your Appearance > Customize > Additional CSS: .addon_qty extbtns { display: none;} This should hide the quantity input wherever products are being displayed inside the custom box layout. For a more robust and long-term solution, we recommend reaching out directly to the developer of the Custom Boxes plugin. They may offer a filter, hook, or specific class you can use to target these products more reliably, or even provide a built-in setting to disable quantity selectors within the box. I hope this helps, and please let me know if you have additional questions.
Thatnks. I ended up just hiding the – and + .xt_woofc-quantity .xt_woofc-quantity-col.xt_woofc-quantity-button{ display:none; }
Hi @envisiondesign , Thanks for reaching out! If you’re looking to hide the quantity selector for products selected via the Custom Boxes plugin, the easiest solution would be to apply a bit of CSS to hide it visually. You can try adding the following to your Appearance > Customize > Additional CSS: .addon_qty extbtns { display: none;} This should hide the quantity input wherever products are being displayed inside the custom box layout. For a more robust and long-term solution, we recommend reaching out directly to the developer of the Custom Boxes plugin. They may offer a filter, hook, or specific class you can use to target these products more reliably, or even provide a built-in setting to disable quantity selectors within the box. I hope this helps, and please let me know if you have additional questions.
Thatnks. I ended up just hiding the – and + .xt_woofc-quantity .xt_woofc-quantity-col.xt_woofc-quantity-button{ display:none; }