Search found 274 matches

by MikaelNazarenko
29 Mar 2022, 10:00
Forum: Laravel package
Topic: Account creation on checkout
Replies: 3
Views: 761

Re: Account creation on checkout

Yes, sorry for this misunderstanding. But I notice seems error in aimeos code: https://github.com/aimeos/ai-controller-frontend/blob/master/src/Controller/Frontend/Customer/Standard.php#L96 $this->item = $item->setPassword( $password ); I guess should be: $this->item = $this->item->setPassword( $pas...
by MikaelNazarenko
29 Mar 2022, 06:04
Forum: Laravel package
Topic: Account creation on checkout
Replies: 3
Views: 761

Account creation on checkout

Hi Community ! Maybe somebody faced with need to implement customer account autocreation with sending link to set password when user checkout process ? Maybe somebody did some steps for it ? Are there in aimeos some built in functions for that ? SORRY! I noticed there is checkbox in checkbox in chec...
by MikaelNazarenko
18 Jan 2022, 13:07
Forum: Laravel package
Topic: variant attributes for selection not displayed on FE
Replies: 11
Views: 2968

Re: variant attributes for selection not displayed on FE

Here is how to extend the decorator: 'controller' => [ 'basket' => array( 'decorators' => array( 'local' => array( 'Category', 'Bundle', 'CustomSelect' ), ), ), ] ], The following things as for me are easy: create new object, extend it from default Select decorator..
by MikaelNazarenko
18 Jan 2022, 12:44
Forum: Laravel package
Topic: variant attributes for selection not displayed on FE
Replies: 11
Views: 2968

Re: variant attributes for selection not displayed on FE

I don't understand now how to extend /vendor/aimeos/ai-controller-frontend/controller/frontend/src/Controller/Frontend/Basket/Decorator/Select.php this decorator
by MikaelNazarenko
18 Jan 2022, 12:20
Forum: Laravel package
Topic: variant attributes for selection not displayed on FE
Replies: 11
Views: 2968

Re: variant attributes for selection not displayed on FE

Sorry forgot specify the components version: aimeos/ai-admin-jqadm 2021.10.4 Aimeos Vue.js+Bootstrap admin interface aimeos/ai-admin-jsonadm 2021.10.2 Aimeos ai-admin-jsonadm extension aimeos/ai-client-html 2021.10.5 Aimeos ai-client-html extension aimeos/ai-client-jsonapi 2021.10.2 Aimeos JSON API ...
by MikaelNazarenko
18 Jan 2022, 12:15
Forum: Laravel package
Topic: variant attributes for selection not displayed on FE
Replies: 11
Views: 2968

Re: variant attributes for selection not displayed on FE

I did not check deep but seems after adding the following code: $isSelectionAttrSelected = true; foreach( $variant as $id ) { if( $productItem->getListItem( 'attribute', 'variant', $id ) === null ) { $isSelectionAttrSelected = false; break; } } if($isSelectionAttrSelected) { $items[] = $productItem;...
by MikaelNazarenko
18 Jan 2022, 11:08
Forum: Laravel package
Topic: variant attributes for selection not displayed on FE
Replies: 11
Views: 2968

Re: variant attributes for selection not displayed on FE

but now when I choose var attributes from selection product - product is not added to basked. When I choose var attributes from variant product - product is added to basked.. Seems missed something
by MikaelNazarenko
18 Jan 2022, 10:59
Forum: Laravel package
Topic: variant attributes for selection not displayed on FE
Replies: 11
Views: 2968

Re: variant attributes for selection not displayed on FE

Seems such a code is missing in the file I specified above: foreach ($this->get('productItem')->getRefItems( 'attribute', null, 'variant' ) as $attrId => $attrItem) { $attrTypeDeps[$attrItem->getType()][$attrId] = $attrItem->getPosition(); $attributeItems[$attrId] = $attrItem; $attrDeps[$attrId][] =...
by MikaelNazarenko
18 Jan 2022, 10:47
Forum: Laravel package
Topic: variant attributes for selection not displayed on FE
Replies: 11
Views: 2968

Re: variant attributes for selection not displayed on FE

From what I see here ext/ai-client-html/client/html/templates/common/partials/selection-standard.php variant attributes from selection product not used..
by MikaelNazarenko
18 Jan 2022, 10:35
Forum: Laravel package
Topic: variant attributes for selection not displayed on FE
Replies: 11
Views: 2968

Re: variant attributes for selection not displayed on FE

My target is something like this: I want to have 2 variants of product. So I want to create selection product and 1 variant product. Then I assign variant attributes for selection and for variant. Then when I go inside product on FE the attributes should be preselected as for selection product, or p...