We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let users specify whether they want variation group to consider quantity multiplier or not.
Use-case scenario example from a user:
Product: Book – $39 Quantity: 1 Optional choices: lifetime updates – $9.99 Final price: 1x Book ($39) + 1x Lifetime updates ($9.99) = 48.99 Problem arises when customer choose quantity of more than 1, because the optional choices (lifetime updates for $9.99) is also calculated two times Product: Book – $39 Quantity: 2 Optional choices: lifetime updates – $9.99 Final price: 2x Book ($78) + 2x Lifetime updates ($9.99) = 97.98 When choosing quantity 2, it also calculates liteime updates two times instead of just one time.
Product: Book – $39 Quantity: 1 Optional choices: lifetime updates – $9.99 Final price: 1x Book ($39) + 1x Lifetime updates ($9.99) = 48.99
Problem arises when customer choose quantity of more than 1, because the optional choices (lifetime updates for $9.99) is also calculated two times
Product: Book – $39 Quantity: 2 Optional choices: lifetime updates – $9.99 Final price: 2x Book ($78) + 2x Lifetime updates ($9.99) = 97.98
When choosing quantity 2, it also calculates liteime updates two times instead of just one time.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let users specify whether they want variation group to consider quantity multiplier or not.
Use-case scenario example from a user:
The text was updated successfully, but these errors were encountered: