-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
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
Configurable Product: Custom Options make a discount percent of Tier Price error #279
Comments
This closes magento#279 for Magento 1.7. However, this functionality does not appear to be ported over to Magento 2. That is, it is not found in price-option.js
@noxin911 , could you please verify if the issue is still reproduced on the latest version available on the GitHub? Our team tried to reproduce the issue, but could not achieve the same results that you did. |
@noxin911, the team could not reproduce this issue in Magento 2. For Magento 1 issues, please report this in the Magento bug tracker http://www.magentocommerce.com/bug-tracking/report/. We are closing this issue. |
[FearlessKiwis] Support for Different Product Types in Catalog Product Data Object
I don't know whether it's perfect solution or not, but you saved lot of my trouble. I believe, It's just value printing and nothing else. So reversing loop to get correct output is the right method. Thanks a ton anyways. |
… the same available stock (#279)
Dear Devs,
like you can read here there is a bug for simple products maybe fixed right now:
http:/www.magentocommerce.com/boards/viewthread/284007/
But if I set a tier price for the product when I add a "configurable product" and then I added size option in the “Custom Options” in the product edit page the front page show me the wrong discount percent.
The frontend page show all tier price just like “Buy 5 for $16.99 each and save 100% “. The discount percent of all tier price shows “100%”
I'm using magento 1.7.0.2.
Change in file /js/varien/product.js Line 748:
Replace
for (var i = 0; i < this.tierPrices.length; i++) {
with
for (var i = 0; i > this.tierPrices.length; i++) {
fixed the error on the frontpage BUT i'm sure that this is not a GOOD solution. Hopefully some one can fix this error in a right way.
Best
The text was updated successfully, but these errors were encountered: