New added product preview image (in 720) is not shown in product details page.
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Re: New added product preview image (in 720) is not shown in product details page.
Yes! It works!
Actually I must add all elements and into 'controller' array to make the function to see all of them:
That was my mistake to forget the 'controller' key
Thank You very much!
Actually I must add all elements and into 'controller' array to make the function to see all of them:
Code: Select all
'controller' => [
'frontend' => [
'catalog' => [
'levels-always' => 3, // number of category levels for mega menu
],
],
'common' => [
'media' => [
'product' => [
'previews' => array_merge(config('controller.common.media.product.previews', []), [
[
'maxwidth' => 240,
'maxheight' => 320,
'force-size' => 1,
], [
'maxwidth' => 480,
'maxheight' => 640,
'force-size' => 1,
], [
'maxwidth' => 720,
'maxheight' => 960,
'force-size' => 1,
], [
'maxwidth' => 960,
'maxheight' => 1280,
'force-size' => 1,
], [
'maxwidth' => 1920,
],
]),
],
],
],
],
Thank You very much!