-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
apply_to fix #466
apply_to fix #466
Conversation
if one of the fields apply_to is null here (which means it applies to all products) it was getting set to only apply to downloadable products. I saw this specifically with the cost attribute.
$applyTo = explode(',', $installer->getAttribute(\Magento\Catalog\Model\Product::ENTITY, $field, 'apply_to')); | ||
if (!in_array('bundle', $applyTo)) { | ||
$applyToStr = $installer->getAttribute(Mage_Catalog_Model_Product::ENTITY, $field, 'apply_to'); | ||
$applyTo = explode(',', $applyToStr); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One more tab will be good here :)
Hello @jason-neumann , the team looked at the issue and asked to update the description for the issue. Could you please extend on the description of the issue you try to solve with this pull request? Thank you! |
@jason-neumann, the team has finished reviewing the case you reported. Here is the response:
Basing on this, we cannot accept your contribution. We are closing this pull request. |
…rid-of-helpers [Extensibility] MAGETWO-50209: Get rid of Helpers in Password Security Management
[South] Bug fixes - MAGETWO-56529 Magento\Framework\Session\SaveHandlerTest test failed - MAGETWO-55794 [FT] Product is not assigned to category - MAGETWO-56370 [GITHUB] Broken File Type Custom Option #5434 - MAGETWO-59146 [Github] Disable email communication set to yes: email did get sent. #5988 - MAGETWO-56871 [GITHUB] Non-admin do not have permission to search for Categories in Cart Price Rules #6168
- Merge Pull Request magento/graphql-ce#466 from yogeshsuhagiya/graphql-ce:2.3-develop-graphql-PR-yogesh-4 - Merged commits: 1. f406c28
if one of the fields apply_to is null here (which means it applies to all products) it was getting set to only apply to downloadable products. I saw this specifically with the cost attribute.