简体   繁体   中英

Custom plus and minus quantity buttons in on Woocommerce single product pages

I tried using this answer code " Custom plus and minus quantity buttons in Woocommerce 3 " to add custom plus and minus buttons to the quantity field on my products in Woocommerce and it works fine.

But it adds plus and minus buttons to any all quantity fields even in cart.

My problem is that I use a third party plugin that displays a flyout cart that already uses its own plus and minus buttons, so I have two plus and minus buttons instead of one.

How can I have the plus and minus buttons just on the product pages?

you can use one if() for Troubleshooting,

if(is_product()){
do somthings,
}else{
do other somthings,
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM