Percentage with Minimum Amount, Fee on Cart Total
-
Hi, great plugin.
I need to setup a 2,5% percentage on the Total Cart Amount (products + shipping + VAT) but if the fee is less than 6,20 the fee must be 6,20.
How can I setup?
I have read the other thread and I applied this to my functions.php
function change_cod_price( $price ) {
return $price < 6.20 ? 6.20 : $price;
}But I am afraid is not working for % fee.
Thanks in advance
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Percentage with Minimum Amount, Fee on Cart Total’ is closed to new replies.