[ad_1]
Dear @vidish,
In the Elementor basket on the sidebar, the customer can adjust the quantity of children’s objects independently using the remove, + and – buttons. Please add this code to the plugin’s CSS.
.wooco-cart-child.wooco-item-child .minus, .wooco-cart-child.wooco-item-child .plus {
display:none;
}
.wooco-cart-item.wooco-cart-child.wooco-item-child div.elementor-menu-cart__product-remove.product-remove {
display:none;
}And please add this JS to prevent using the quantity input field.
<script>
jQuery(document).ready(function($) {
$('.sidebar-main').on('click', '.wooco-item-child .input-text', function(event) {
$('.wooco-item-child .input-text').prop('readonly', true);
});
});
</script>Best regards,
@estalhun
