Search found 7237 matches
- 06 Jun 2023, 11:50
- Forum: Laravel package
- Topic: How to create a selection product with different price vouchers?
- Replies: 4
- Views: 86
Re: How to create a selection product with different price vouchers?
Guess, you've defined no variant attributes for the articles in the selection product. Thus, the frontend doesn't know which voucher variant should be added to the basket. Maybe a group product is the better option in that case.
- 06 Jun 2023, 11:40
- Forum: Laravel package
- Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
- Replies: 10
- Views: 123
Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
You didn't add a direct to the beginning of the ./routes/web.php file like:
Code: Select all
Route::get('/', function (Request $request) {
return redirect('/en');
});
- 05 Jun 2023, 07:06
- Forum: Laravel package
- Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
- Replies: 10
- Views: 123
Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
Add a redirect to the default language, e.g. "/en" before the if condition in the ./routes/web.php file so the home page route can match.
- 05 Jun 2023, 07:00
- Forum: Laravel package
- Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
- Replies: 10
- Views: 123
Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
If you don't have configured SHOP_MULTILOCALE=true, then you have to remove the "if( $conf['prefix'] )" condition.
- 05 Jun 2023, 06:23
- Forum: Laravel package
- Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
- Replies: 10
- Views: 123
Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
The route for the home page needs to be adapted too:
Code: Select all
Route::group(['domain' => '{site}', 'middleware' => ['web']], function () {
Route::get('/', '\Aimeos\Shop\Controller\CatalogController@homeAction')
->name('aimeos_home')->where( ['site' => '[a-z0-9\-]+'] );
});
- 04 Jun 2023, 17:07
- Forum: Help
- Topic: Google Analytics Script
- Replies: 1
- Views: 31
Re: Google Analytics Script
Best place is in the base.blade.php which you can copy to your ./resource/views/vendor/shop/ directory:
https://github.com/aimeos/aimeos-larave ... .blade.php
See also: https://aimeos.org/docs/latest/laravel/ ... -templates
https://github.com/aimeos/aimeos-larave ... .blade.php
See also: https://aimeos.org/docs/latest/laravel/ ... -templates
- 04 Jun 2023, 17:03
- Forum: Laravel package
- Topic: Anonymous vs User Site Display
- Replies: 4
- Views: 61
Re: Anonymous vs User Site Display
Normally not. We are using Nginx + PHP FPM for all our demo sites. The difference when being logged in is that the Aimeos content cache isn't used. For testing, you can also delete the content of the madmin_cache table if "php artisan aimeos:clear" didn't remove the entries for whatever re...
- 04 Jun 2023, 08:49
- Forum: TYPO3 extension
- Topic: Typo 12 Aimeos Backend Error "Declaration must be compatible with ..."
- Replies: 7
- Views: 330
Re: Typo 12 Aimeos Backend Error "Declaration must be compatible with ..."
We've adapted the code to psr/http-message v2 which caused the 500 error and created a new dev package: https://aimeos.org/fileadmin/download/aimeos_23.4.3-pre1.zip You can also try to install the Aimeos package via composer. At the moment, we still are unable to test ourselves due to the mentioned ...
- 04 Jun 2023, 08:40
- Forum: Laravel package
- Topic: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
- Replies: 10
- Views: 123
Re: Multishop Configuration Issue: Overriding Locale Settings in Laravel Aimeos
"mydomain.com" isn't a subdomain of itself, so your settings won't work. Use these instead: 'routes' => [ 'admin' => ['domain' => '{site}', 'prefix' => 'admin', 'middleware' => ['web']], 'jqadm' => ['domain' => '{site}', 'prefix' => 'admin/jqadm', 'middleware' => ['web', 'auth']], 'graphql...
- 04 Jun 2023, 08:35
- Forum: Laravel package
- Topic: Anonymous vs User Site Display
- Replies: 4
- Views: 61
Re: Anonymous vs User Site Display
This looks like a caching issue. What happens if you force the browser to reload the page (Ctrl+Shift+R)?
If that doesn't help, try to clear the content cache using:
If that doesn't help, try to clear the content cache using:
Code: Select all
php artisan aimeos:clear