Home Forums WoodMart support forum Change the line color in the price button Reply To: Change the line color in the price button

#359214

alahoonk
Participant

Hello

I found the solution and it was changed, but there is a problem with the theme for you, an increase in a double number

step=”<?php echo ($product->get_increase_bid_value()) ? $product->get_increase_bid_value() : ‘3’ ?>”

Example you increased 3, he put 6
check bid to 6
Supposed 3
https://msabe7.com/m/product/decoration-wooden-present/

I tried setting 0, can not be increased

The problem with the theme is double increase
The problem is from the theme, not from the plugin
Most of the themes have been tried without problems

Login has been sent again

—————————-

How to increase bid step for bid increment value to be more than 1? Bidding increment is done so you can bid in increments of 1, because otherwise if you set bid step of say 5, you would be able to bid 5, 10, 15… instead you can bid 7, 13, 22, etc. If you insist on different behaviour, you need to edit template woocommerce-simple-auctions\templates\single-product\auction-bid-form.php line 50 and change:
step=”any”

becomes

step=”<?php echo ($product->get_increase_bid_value()) ? $product->get_increase_bid_value() : ‘1’ ?>”

https://wpgenie.org/woocommerce-simple-auctions/documentation/