Search found 85 matches
- 16 Feb 2022, 09:07
- Forum: Laravel package
- Topic: Aimeos template change to blade template
- Replies: 11
- Views: 5645
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...
- 30 Nov 2021, 22:46
- Forum: Laravel package
- Topic: Custom metatags - title, keywords etc.
- Replies: 1
- Views: 1214
Custom metatags - title, keywords etc.
How to put custom metatags in <head> section in HTML on different pages ?
- 22 Nov 2021, 09:32
- Forum: Laravel package
- Topic: Locale object not available
- Replies: 1
- Views: 1106
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
How to prevent such errors as someone will add something to the address ?
How to prevent such errors as someone will add something to the address ?
- 22 Nov 2021, 09:23
- Forum: Laravel package
- Topic: Decorator process method not working correctly
- Replies: 6
- Views: 3012
Re: Decorator process method not working correctly
That's exactly what I do but not working correctly.
- 22 Nov 2021, 07:38
- Forum: Laravel package
- Topic: How to do redirect in decorator
- Replies: 3
- Views: 1892
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 ?
- 22 Nov 2021, 07:37
- Forum: Laravel package
- Topic: Decorator process method not working correctly
- Replies: 6
- Views: 3012
Re: Decorator process method not working correctly
Yes, I configured it. I check this code. The code is executing.
- 20 Nov 2021, 17:59
- Forum: Laravel package
- Topic: Additional fields validation
- Replies: 6
- Views: 3600
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;
- 20 Nov 2021, 12:31
- Forum: Laravel package
- Topic: Decorator process method not working correctly
- Replies: 6
- Views: 3012
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
I want to execute all base operations of basket and then my code in decorator but not working correctly
- 19 Nov 2021, 16:14
- Forum: Laravel package
- Topic: Decorator process method not working correctly
- Replies: 6
- Views: 3012
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...
- 19 Nov 2021, 12:05
- Forum: Laravel package
- Topic: How to do redirect in decorator
- Replies: 3
- Views: 1892
How to do redirect in decorator
I try redirect to some page in my decorator but not working. How to do this ?