Search found 41 matches

by TGergo
27 Oct 2023, 10:43
Forum: Help
Topic: Product pictures
Replies: 5
Views: 3084

Re: Product pictures

On list page with sizes="(min-width: 260px) 240px, 100vw" something wrong in Chrome https://laravel.demo.aimeos.org/shop/best-sellers~2 Chrome browser randomly loads the wrong size of image, I think it is related to the resolution and the zoom percentage in Windows 3840x2160 225% zoom look...
by TGergo
27 Oct 2023, 07:22
Forum: Help
Topic: CSV Import attribute INSERT INTO "mshop_product_list" Duplicate entry
Replies: 8
Views: 26220

Re: CSV Import attribute INSERT INTO "mshop_product_list" Duplicate entry

Your configuration is wrong and must be: 'controller' => [ 'jobs' => [ 'product' => [ 'import' => [ 'csv' => [ 'attribute' => [ 'listtypes' => ['myattribute1', 'myattribute2'], ], ], ], ], ], ], No, I think the documentation is also bad, this is the right one: controller/ common /product/import/csv...
by TGergo
26 Oct 2023, 11:33
Forum: Help
Topic: CSV Import attribute INSERT INTO "mshop_product_list" Duplicate entry
Replies: 8
Views: 26220

Re: CSV Import attribute INSERT INTO "mshop_product_list" Duplicate entry

TGergo wrote: 24 Oct 2023, 07:54 Thanks! That was the problem.
Another problem
It worked on my local machine but not on the test server.
same error, did not delete the old attributes
the solution: change Redis queue worker numprocs=2 to numprocs=1
by TGergo
17 Oct 2023, 07:14
Forum: Help
Topic: CSV Import attribute INSERT INTO "mshop_product_list" Duplicate entry
Replies: 8
Views: 26220

Re: CSV Import attribute INSERT INTO "mshop_product_list" Duplicate entry

Other problem with this feature. When I add an attribute to the array for example: 'myattribute1' the first value is: text1 I change the value in the csv file: text2 will add text2 but not delete text1 so I have two values: myattribute1 : text1 myattribute1 : text2 but my csv file contains only one
by TGergo
11 Oct 2023, 07:40
Forum: Help
Topic: CSV Import attribute INSERT INTO "mshop_product_list" Duplicate entry
Replies: 8
Views: 26220

CSV Import attribute INSERT INTO "mshop_product_list" Duplicate entry

Hello! I would like to run the CSV import multiple times. I set the update to change the following attributes. 'controller' => [ 'product' => [ 'import' => [ 'csv' => [ 'processor' => [ // modify by update import 'attribute' => [ 'listtypes' => [ 'myattribute1', 'myattribute2' ], ], ... Then I get t...
by TGergo
17 Feb 2023, 15:14
Forum: Laravel package
Topic: Code Required error when registering
Replies: 21
Views: 4840

Re: Code Required error when registering

Bug. When billing 'order.base.address.languageid' is null, then Registration email will not be sent out. this is the problem: $helper = new \Aimeos\Base\View\Helper\Translate\Standard( $view, $this->context()->i18n( $langId ?: 'en' ) ); I don't have 'en' language. must be recorded in shop.php 'clien...
by TGergo
08 Feb 2023, 15:27
Forum: Laravel package
Topic: mshop_product instock column not updating, filtering by stock (display only products in stock)
Replies: 9
Views: 2258

Re: mshop_product instock column not updating, filtering by stock (display only products in stock)

/** * Increases or decreses the stock levels of the products referenced in the order by the given value. * * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object * @param int $how Positive or negative integer number for increasing or decreasing the stock levels * @return \Aimeos\Contr...
by TGergo
02 Feb 2023, 14:50
Forum: Help
Topic: Unique Main page without CMS
Replies: 2
Views: 1508

Re: Unique Main page without CMS

I think I understood. :) Main page has a Laravel controller class CatalogController extends Controller public function homeAction() { } } Main page has a Laravel blade home.blade.php with this code @section('aimeos_body') <?= $aibody['catalog/home'] ?? '' ?> @stop and in the shop.php 'page' => [ 'ca...