Elementor Cart incompatibility
-
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
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.