Search found 10 matches

by aloniwe
23 Dec 2019, 15:50
Forum: Laravel package
Topic: overriding Client\Html\Checkout\Standard\Standard.php
Replies: 13
Views: 19250

Re: overriding Client\Html\Checkout\Standard\Standard.php

How could i miss that..
sorry and and thank you.
by aloniwe
19 Dec 2019, 10:12
Forum: Laravel package
Topic: overriding Client\Html\Checkout\Standard\Standard.php
Replies: 13
Views: 19250

Re: overriding Client\Html\Checkout\Standard\Standard.php

As i told, i put the same code from ai-client-html: <?php /** * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0 * @copyright Metaways Infosystems GmbH, 2012 * @copyright Aimeos (aimeos.org), 2015-2018 * @package Client * @subpackage Html */ namespace Aimeos\Client\Html\Catalog\Lists; /** * ...
by aloniwe
18 Dec 2019, 16:00
Forum: Laravel package
Topic: overriding Client\Html\Checkout\Standard\Standard.php
Replies: 13
Views: 19250

Re: overriding Client\Html\Checkout\Standard\Standard.php

Here my config: 'client' => [ 'html' => [ 'catalog' => [ 'lists' => [ 'name' => 'Mystandard', ] ], ], ] Here i'm trying to paste my new Standard class: Screenshot_1.png and exception after: Aimeos\Client\Html\Exception Class "\Aimeos\Client\Html\Catalog\Lists\Mystandard" not available
by aloniwe
13 Dec 2019, 16:42
Forum: Laravel package
Topic: overriding Client\Html\Checkout\Standard\Standard.php
Replies: 13
Views: 19250

Re: overriding Client\Html\Checkout\Standard\Standard.php

No, my standard class has correct extension (Mystandard.php).
by aloniwe
12 Dec 2019, 18:06
Forum: Laravel package
Topic: overriding Client\Html\Checkout\Standard\Standard.php
Replies: 13
Views: 19250

Re: overriding Client\Html\Checkout\Standard\Standard.php

Is it working right now? I'm trying to override Catalog\Lists\Standard class from ai-client-html. I added new 'Mystandard' class into my extension (myext\client\html\src\Client\Html\Catalog\Lists\Mystandard) with same code from ai-client-html. Also i added config: 'client' => [ 'html' => [ 'catalog'...
by aloniwe
11 Dec 2019, 16:35
Forum: Laravel package
Topic: Get data from another template
Replies: 5
Views: 1793

Re: Get data from another template

Thank you very match! For it works i also added currency: $cntl = \Aimeos\Controller\Frontend::create( $context, 'product' )->uses( $domains ); $items = $cntl->compare('>=', 'index.price:value("'.$currencyid.'")', 20)->search(); Is it good idea to fetch all products again in my decorator i...
by aloniwe
10 Dec 2019, 15:24
Forum: Laravel package
Topic: Get data from another template
Replies: 5
Views: 1793

Re: Get data from another template

I created my own decorator. Now i need to compare each product price with min and max values. I'm trying to do smth like that in my decorator: $products = \Aimeos\Controller\Frontend::create( $context, 'product' )->uses( $domains ); $items = $products->compare('>', 'product.price.value', 20)->search...
by aloniwe
06 Dec 2019, 15:22
Forum: Laravel package
Topic: Get data from another template
Replies: 5
Views: 1793

Get data from another template

Hey! I'm trying to create filter by price (range slider). I'm passing range values (min and max) by url. After extending list standard class and retrieving products that matchs range: Screenshot_2.png i'm passing some params into view: Screenshot_3.png The question is: how can i get them in another ...
by aloniwe
27 Nov 2019, 13:46
Forum: Laravel package
Topic: Locale template (separate language and currency)
Replies: 2
Views: 1087

Re: Locale template (separate language and currency)

It works, thank you aimeos!
by aloniwe
21 Nov 2019, 13:00
Forum: Laravel package
Topic: Locale template (separate language and currency)
Replies: 2
Views: 1087

Locale template (separate language and currency)

Hi, i want to separate language and currency subparts from the locale template to paste them in different places of my page.
If there are opportunity to divide theme like filter component into tree/attribute? What should i do?