As I said, please remove the old code and add the below code to the end of all.
.woobt-qty-num {
display: none
}
DONT’T place this code in:
@media only screen and (max-width: 767px) {
...
}
yes its works there is an option to replace 1x to other text in css?
You can use below snippet (How to add custom code?):
add_filter( 'woobt_product_qty', 'woobt_custom_product_qty', 10, 3 );
function woobt_custom_product_qty( $item_product_qty, $item_qty, $item_product ) {
return 'Your custom text here!';
}
Maybe you hide it by using the above CSS code, so you don’t see it. Please also remove the CSS code.