Magento 2.1 Cannot Update Multi-select Attributes for Multiple Products
Anyone else having this issue? I have created a couple of new attributes (with multi-select) and when I try to mass update this attribute across 9 products simultaneously it doesn't update (although it says it's successful.)
I can update the attribute if I click into each product individually.
attributes custom-attributes multiselect-attribute massaction
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Anyone else having this issue? I have created a couple of new attributes (with multi-select) and when I try to mass update this attribute across 9 products simultaneously it doesn't update (although it says it's successful.)
I can update the attribute if I click into each product individually.
attributes custom-attributes multiselect-attribute massaction
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
I also had this Problem with product visibility. Seems to be a Bug Not Limited to custom attributes
– David Verholen
Aug 15 '16 at 20:55
add a comment |
Anyone else having this issue? I have created a couple of new attributes (with multi-select) and when I try to mass update this attribute across 9 products simultaneously it doesn't update (although it says it's successful.)
I can update the attribute if I click into each product individually.
attributes custom-attributes multiselect-attribute massaction
Anyone else having this issue? I have created a couple of new attributes (with multi-select) and when I try to mass update this attribute across 9 products simultaneously it doesn't update (although it says it's successful.)
I can update the attribute if I click into each product individually.
attributes custom-attributes multiselect-attribute massaction
attributes custom-attributes multiselect-attribute massaction
edited Aug 16 '16 at 0:54
babywit
asked Aug 15 '16 at 20:42
babywitbabywit
374317
374317
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
I also had this Problem with product visibility. Seems to be a Bug Not Limited to custom attributes
– David Verholen
Aug 15 '16 at 20:55
add a comment |
I also had this Problem with product visibility. Seems to be a Bug Not Limited to custom attributes
– David Verholen
Aug 15 '16 at 20:55
I also had this Problem with product visibility. Seems to be a Bug Not Limited to custom attributes
– David Verholen
Aug 15 '16 at 20:55
I also had this Problem with product visibility. Seems to be a Bug Not Limited to custom attributes
– David Verholen
Aug 15 '16 at 20:55
add a comment |
2 Answers
2
active
oldest
votes
I am having similar issue - if add to custom attribute set custom multi select attribute (and it's not in default) they don't save. But after first try i run cache:clean and from this moment everything goes fine.
add a comment |
Just discovered that this is a bug in Magento 2.1 and here is the patch to fix this.
https://github.com/magento/magento2/issues/5459
I used different file paths for 2.1: vendor/magento/module-catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php
vendor/magento/module-catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php
Also, in the attributes.php I removed the old line and in the save.php I added the new one underneath the old one
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f131501%2fmagento-2-1-cannot-update-multi-select-attributes-for-multiple-products%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I am having similar issue - if add to custom attribute set custom multi select attribute (and it's not in default) they don't save. But after first try i run cache:clean and from this moment everything goes fine.
add a comment |
I am having similar issue - if add to custom attribute set custom multi select attribute (and it's not in default) they don't save. But after first try i run cache:clean and from this moment everything goes fine.
add a comment |
I am having similar issue - if add to custom attribute set custom multi select attribute (and it's not in default) they don't save. But after first try i run cache:clean and from this moment everything goes fine.
I am having similar issue - if add to custom attribute set custom multi select attribute (and it's not in default) they don't save. But after first try i run cache:clean and from this moment everything goes fine.
answered Aug 16 '16 at 20:55
Bartosz KubickiBartosz Kubicki
1,382736
1,382736
add a comment |
add a comment |
Just discovered that this is a bug in Magento 2.1 and here is the patch to fix this.
https://github.com/magento/magento2/issues/5459
I used different file paths for 2.1: vendor/magento/module-catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php
vendor/magento/module-catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php
Also, in the attributes.php I removed the old line and in the save.php I added the new one underneath the old one
add a comment |
Just discovered that this is a bug in Magento 2.1 and here is the patch to fix this.
https://github.com/magento/magento2/issues/5459
I used different file paths for 2.1: vendor/magento/module-catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php
vendor/magento/module-catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php
Also, in the attributes.php I removed the old line and in the save.php I added the new one underneath the old one
add a comment |
Just discovered that this is a bug in Magento 2.1 and here is the patch to fix this.
https://github.com/magento/magento2/issues/5459
I used different file paths for 2.1: vendor/magento/module-catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php
vendor/magento/module-catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php
Also, in the attributes.php I removed the old line and in the save.php I added the new one underneath the old one
Just discovered that this is a bug in Magento 2.1 and here is the patch to fix this.
https://github.com/magento/magento2/issues/5459
I used different file paths for 2.1: vendor/magento/module-catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php
vendor/magento/module-catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php
Also, in the attributes.php I removed the old line and in the save.php I added the new one underneath the old one
edited Aug 25 '16 at 18:44
answered Aug 21 '16 at 22:08
babywitbabywit
374317
374317
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f131501%2fmagento-2-1-cannot-update-multi-select-attributes-for-multiple-products%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I also had this Problem with product visibility. Seems to be a Bug Not Limited to custom attributes
– David Verholen
Aug 15 '16 at 20:55