Search found 126 matches

by columbo
16 May 2022, 21:51
Forum: Laravel package
Topic: Product update via csv import fails in 2022.04
Replies: 2
Views: 669

Product update via csv import fails in 2022.04

Hi, after upgrading to Aimeos 2022.04 product updates using csv import fails: Unable to import product with code "238530": SQLSTATE[23505]: Unique violation: 7 FEHLER: doppelter Schlüsselwert verletzt Unique-Constraint »unq_msproli_pid_sid_dm_ty_rid« DETAIL: Schlüssel »(parentid, siteid, d...
by columbo
09 May 2022, 14:41
Forum: Laravel package
Topic: .js added multiple times in 2022.04
Replies: 5
Views: 1144

Re: .js added multiple times in 2022.04

thanks, but now there are issues on the catalog detail page
after last "composer up" catalog-filter.css and .js are missing on catalog detail page
by columbo
06 May 2022, 07:13
Forum: Laravel package
Topic: .js added multiple times in 2022.04
Replies: 5
Views: 1144

Re: .js added multiple times in 2022.04

ah ok, thanks.
Any other clue why the js for the attribute filter is being fired twice? After clicking on eg. "Color" tree is opened and closed again
by columbo
05 May 2022, 21:31
Forum: Laravel package
Topic: .js added multiple times in 2022.04
Replies: 5
Views: 1144

.js added multiple times in 2022.04

Hi, updated to Aimeos 2022.04 After clicking on the attribute filter tree, the tree opens for a second and then closes again. I checked the HTML and found that the catalog-filter.js are added multiple times in @yield('aimeos_header'). ... <link rel="stylesheet" href="/vendor/shop/them...
by columbo
07 Feb 2022, 21:13
Forum: Laravel package
Topic: selected catalog layout (grid/list) not saved
Replies: 5
Views: 1308

Re: selected catalog layout (grid/list) not saved

As I'm using 2020.10 I added your code changes from https://github.com/aimeos/ai-client-html/commit/e2d68a790e0b080c4c256514e479208774d20511 and https://github.com/aimeos/ai-client-html/commit/76314e538b390a37f23b43d837a51e5fc6d78205 accordingly. It works, thank you! But - as you already mentioned -...
by columbo
02 Feb 2022, 21:26
Forum: Laravel package
Topic: selected catalog layout (grid/list) not saved
Replies: 5
Views: 1308

Re: selected catalog layout (grid/list) not saved

but according to https://aimeos.org/docs/2020.x/config/client-html/catalog-lists/#template-header ...The type of the view is determined by the "l_type" parameter (allowed characters for the types are a-z and 0-9), which is also stored in the session so users will keep the view during their...
by columbo
29 Jan 2022, 10:16
Forum: Laravel package
Topic: selected catalog layout (grid/list) not saved
Replies: 5
Views: 1308

selected catalog layout (grid/list) not saved

Hi I customized two catalog layouts (-grid and -list) and updated in shop.php 'template-body-list' and 'template-body-grid'. Now: on catalog list page: select list -layout (displayed in grid-layout first) go to product detail page go back to catalog list page: displayed in grid -layout (instead list...
by columbo
18 Nov 2021, 11:07
Forum: Laravel package
Topic: Last page of customer table -> blank page
Replies: 1
Views: 633

Last page of customer table -> blank page

Hi, in aimeos 2020.10.9: go to customer section in aimeos' admin area (jqadm) -> as expected, all customers are listed in a paginated table . now go to last page or increase page-limit so that all customer are displayed on a single page -> failure : customer table not displayed at all: blank page.pn...
by columbo
28 Sep 2021, 20:57
Forum: Laravel package
Topic: Display custom field in user profile and mail
Replies: 7
Views: 1978

Re: Display custom field in user profile and mail

yes, custid is part of the select query. SELECT lvuad."custid", lvuad."id" AS "customer.address.id", lvuad."parentid" AS "customer.address.parentid", lvuad."company" AS "customer.address.company", lvuad."vatid" AS "...
by columbo
27 Sep 2021, 20:40
Forum: Laravel package
Topic: Display custom field in user profile and mail
Replies: 7
Views: 1978

Re: Display custom field in user profile and mail

Custid is stored in DB table "users_address" successfully, but not part of the address item object displayed with: <?= print_r( $this->summaryBasket->getAddress( 'delivery' ) ) ; ?> Do I have an error in my decorator? <?php namespace Aimeos\MShop\Customer\Manager\Address\Decorator; // add ...