Hello,
Unfortunately, we do not support these plugins, but you can enable the default quantity to make it work:
1. Copy this file to the functions.php file in your child theme: wp-content/plugins/woocommerce/templates/global/quantity-input.php
2. Define the code below in Theme Settings -> Custom CSS -> Global Custom CSS area.
div.quantity input[type="button"] {
display: none;
}
div.quantity input[type="number"]{
min-width: 150px;
border-right: 2px solid #e5e5e5;
border-left: 2px solid#e5e5e5;
}
.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
opacity: 1;
-webkit-appearance: button !important;
-moz-appearance: button !important;
appearance: button !important;
}
Kind Regards