-
Notifications
You must be signed in to change notification settings - Fork 9.4k
API REST product images, Label in one website and roles in other #14287
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
Comments
@guillermogallego, thank you for your report. |
I'm experiecing the same problem and I may add one more boring issue related and similar to the issue #6259 . While I work on the backend, trying to fix issue in image order data I expect that working on all store views will modify image order on all store views, but switching the view to a specific one I find a different image order, I've gone through a search in catalog configuration for image order scope without any luck, any hint on this? Is it a know issue as well? |
Hi! Any update on when this issue is going to be fixed? |
Hi!
The bug was solved for the next versions
…On 27/06/18 18:56, sebastianamaro wrote:
Hi!
Any update on when this issue is going to be fixed?
I have the same problem on 2.1.3
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#14287 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AD2hbpqw7ufkpyb7PXyX3QyDWUV2iTn2ks5uA7kmgaJpZM4S4myZ>.
|
So the fix is not going to be backported to 2.1.3? Only 2.2 and forward? |
Hi @engcom-Echo. Thank you for working on this issue.
|
So, this is still an issue in 2.3.5? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed after 14 days if no further activity occurs. Thank you for your contributions. |
Hi @engcom-Alfa. Thank you for working on this issue.
|
Hi @guillermogallego . Thank you for your report! Unfortunately, we are not able to reproduce the issue on fresh 2.4-develop. Manual testing scenario: Create a product with API REST for websites id 1 and 2 {
"product": {
"sku": "DS-100-101",
"name": "Daale Swim Bañador Bizarre Training",
"attribute_set_id": 4,
"price": 1,
"status": 1,
"visibility": 4,
"type_id": "configurable",
"extension_attributes": {
"website_ids": [
1,
2
],
"stock_item": {
"qty": 20,
"is_in_stock": true
}
},
"media_gallery_entries": [
{
"media_type": "image",
"label": "Daale Swim Bañador Bizarre Training - 0",
"position": 1,
"disabled": false,
"types": [
"image",
"small_image",
"thumbnail",
"swatch_image"
],
"content": {
"base64_encoded_data": "string",
"type": "image/jpeg",
"name": "daale-swim-banador-bizarre-training.jpg"
}
},
{
"media_type": "image",
"label": "Daale Swim Bañador Bizarre Traininfgfgg - 0",
"position": 4,
"disabled": false,
"content": {
"base64_encoded_data": "string",
"type": "image/jpeg",
"name": "daale-swim-bgggganador-bizarre-training.jpg"
}
}
],
"custom_attributes": [
{
"attribute_code": "description",
"value": "test1"
},
{
"attribute_code": "meta_description",
"value": "test2"
},
{
"attribute_code": "meta_title",
"value": "Daale Swim Bañador Bizarre Training"
}
]
},
"saveOptions": true
} Actual Result:
So, we have to close it. |
Preconditions
Magento 2.2.3
Php 7.1
Centos 7 with CPANEL
I configure 3 Websites and theirs views
Steps to reproduce
`Array
(
[sku] => DS-100-101
[name] => Daale Swim Bañador Bizarre Training
[attribute_set_id] => 9
[status] => 1
[visibility] => 4
[type_id] => configurable
[media_gallery_entries] => Array
(
[0] => Array
(
[media_type] => image
[label] => Daale Swim Bañador Bizarre Training - 0
[disabled] =>
[position] => 1
[types] => Array
(
[0] => "image"
[1] => "small_image"
[2] => "thumbnail"
[3] => "swatch_image"
[4] => "_media_image"
)
[content] => Array
(
[type] => image/jpeg
[name] => daale-swim-banador-bizarre-training.jpg
[base64_encoded_data] => Base 64 data
)
)
[3] => Array
(
[media_type] => image
[label] => Daale Swim Bañador Bizarre Training - 3
[disabled] =>
[position] => 4
[types] => Array()
[content] => Array
(
[type] => image/jpeg
[name] => daale-swim-banador-bizarre-training.jpg
[base64_encoded_data] => Base 64 data
)
)
)
[extension_attributes] => Array
(
[stock_item] => Array
(
[is_in_stock] => 1
)
[website_ids] => Array
(
[0] => 1
[1] => 2
)
)
)
`
Expected result
The roles of primary images assigned to all stores views
The label of images assigned to all stores views
The thumbnail for the product list assigned to all stores views (without filters)
Actual result
Roles of primary image are assigned to only one store view or website
Label of images are assigned to only one store view or website (different to the above)
Only show thumbnail image in the list when filter for one store view (the view have assigned the roles)
The text was updated successfully, but these errors were encountered: