• Resolved estalhun

    (@estalhun)


    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

    • This topic was modified 5 months, 3 weeks ago by estalhun.
Viewing 1 replies (of 1 total)
  • Plugin Author Vidish

    (@vidishp)

    @estalhun Thank you for reaching out. I will check this patch and try to accommodate it in next release. Thank you once again!
    Vidish

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.