Search found 85 matches
- 05 May 2022, 22:31
- Forum: Laravel package
- Topic: Differents layouts for sites
- Replies: 10
- Views: 5130
Differents layouts for sites
I have several sites in Aimeos. How to do different layout for each other.
- 05 May 2022, 22:17
- Forum: Laravel package
- Topic: Locale object not available after change routes
- Replies: 4
- Views: 2207
Re: Locale object not available after change routes
I create custom page and try using Aimeos context object in my custom controller and I receive this error. And I change my site code from "default" to "test.localhost" Bellow line causes error:
app('aimeos.context')->get()
app('aimeos.context')->get()
- 05 May 2022, 17:12
- Forum: Laravel package
- Topic: Locale object not available after change routes
- Replies: 4
- Views: 2207
Locale object not available after change routes
I have error "Locale object not available " when I change my routes in config/shop.php. New entry is: 'routes' => [ 'admin' => ['domain' => '{site}', 'prefix' => 'admin', 'middleware' => ['web']], 'jqadm' => ['domain' => '{site}', 'prefix' => 'admin/jqadm', 'middleware' => ['web', 'auth']]...
- 21 Feb 2022, 12:42
- Forum: Laravel package
- Topic: Aimeos template change to blade template
- Replies: 11
- Views: 5644
Re: Aimeos template change to blade template
@Aimeos, will you answer if you know?
- 21 Feb 2022, 07:26
- Forum: Laravel package
- Topic: Aimeos template change to blade template
- Replies: 11
- Views: 5644
Re: Aimeos template change to blade template
My full code: @section('checkout/standard/address') <section class="checkout-standard-address"> <input type="hidden" name="cs_order" value="1"> <div class="row common-summary-detail2 mt-2 mt-sm-4 mb-3 gx-0 gx-sm-4"> <div class="common-summary-de...
- 18 Feb 2022, 12:42
- Forum: Laravel package
- Topic: Aimeos template change to blade template
- Replies: 11
- Views: 5644
Re: Aimeos template change to blade template
And I replace <div class="col-12"> <?= $this->block()->get('checkout/standard/address/billing') ?> </div> <div class="col-12"> <?= $this->block()->get('checkout/standard/address/delivery') ?> </div> on <div class="col-12"> @yield('checkout/standard/address/billing') </d...
- 18 Feb 2022, 11:20
- Forum: Laravel package
- Topic: Aimeos template change to blade template
- Replies: 11
- Views: 5644
Re: Aimeos template change to blade template
And
?
Code: Select all
$this->set('standardUrlBack', '/shop/checkout');
- 18 Feb 2022, 09:20
- Forum: Laravel package
- Topic: Aimeos template change to blade template
- Replies: 11
- Views: 5644
Re: Aimeos template change to blade template
And $this->partial( $this->config('client/html/checkout/standard/partials/address', 'checkout/standard/address-partial-standard'), array( 'id' => $this->addressPaymentItem->getAddressId(), 'address' => $this->addressPaymentItem->toArray(), 'error' => $this->get('addressBillingOption') == $this->addr...
- 18 Feb 2022, 07:40
- Forum: Laravel package
- Topic: Aimeos template change to blade template
- Replies: 11
- Views: 5644
Re: Aimeos template change to blade template
And
?
Code: Select all
$this->formparam( array($fname, 'order.base.address.salutation'))
- 17 Feb 2022, 15:49
- Forum: Laravel package
- Topic: Aimeos template change to blade template
- Replies: 11
- Views: 5644
Re: Aimeos template change to blade template
I already know in part how to convert, but I have a problem with the following.
How to convert in blade below code:
How to convert in blade below code:
Code: Select all
$this->value('error', 'order.base.address.salutation')
$this->value('css', 'order.base.address.salutation', [])