Search found 85 matches

by krzysiekp
16 Feb 2022, 09:07
Forum: Laravel package
Topic: Aimeos template change to blade template
Replies: 11
Views: 2502

Aimeos template change to blade template

For example, I have an Aimeos template ext/new-theme/client/html/templates/common/summary/detail-standard.php There are references to: $this->config('client/html/common/summary/detail/product/attribute/types', ['variant', 'config', 'custom']); $this->summaryBasket->getPrice(); $this->get('summaryEna...
by krzysiekp
30 Nov 2021, 22:46
Forum: Laravel package
Topic: Custom metatags - title, keywords etc.
Replies: 1
Views: 703

Custom metatags - title, keywords etc.

How to put custom metatags in <head> section in HTML on different pages ?
by krzysiekp
22 Nov 2021, 09:32
Forum: Laravel package
Topic: Locale object not available
Replies: 1
Views: 669

Locale object not available

I have address /shop/checkout/address?site=default in browser but if I change for example /shop/checkout/address?site=default34324 I receive error
Screenshot_2.jpg
Screenshot_2.jpg (119.42 KiB) Viewed 669 times
How to prevent such errors as someone will add something to the address ?
by krzysiekp
22 Nov 2021, 09:23
Forum: Laravel package
Topic: Decorator process method not working correctly
Replies: 6
Views: 1418

Re: Decorator process method not working correctly

That's exactly what I do but not working correctly.
by krzysiekp
22 Nov 2021, 07:38
Forum: Laravel package
Topic: How to do redirect in decorator
Replies: 3
Views: 992

Re: How to do redirect in decorator

So how to redirect to another page ? I validate the data in the decorator in "process" method and how to redirect if something is wrong ?
by krzysiekp
22 Nov 2021, 07:37
Forum: Laravel package
Topic: Decorator process method not working correctly
Replies: 6
Views: 1418

Re: Decorator process method not working correctly

Yes, I configured it. I check this code. The code is executing.
by krzysiekp
20 Nov 2021, 17:59
Forum: Laravel package
Topic: Additional fields validation
Replies: 6
Views: 1682

Re: Additional fields validation

The point is, the laravel method to redirect doesn't work. Work correctly only

Code: Select all

header('location: some www');
die;
by krzysiekp
20 Nov 2021, 12:31
Forum: Laravel package
Topic: Decorator process method not working correctly
Replies: 6
Views: 1418

Re: Decorator process method not working correctly

Aimeos

I want to execute all base operations of basket and then my code in decorator but not working correctly
by krzysiekp
19 Nov 2021, 16:14
Forum: Laravel package
Topic: Decorator process method not working correctly
Replies: 6
Views: 1418

Decorator process method not working correctly

I have a code. Code below line: $this->getClient()->process(); not working correctly. For example remove product from cart not working. class BasketDecorator extends \Aimeos\Client\Html\Common\Decorator\Base implements \Aimeos\Client\Html\Common\Decorator\Iface { public function process() { try { $c...
by krzysiekp
19 Nov 2021, 12:05
Forum: Laravel package
Topic: How to do redirect in decorator
Replies: 3
Views: 992

How to do redirect in decorator

I try redirect to some page in my decorator but not working. How to do this ?