Search found 7949 matches

by aimeos
06 Nov 2017, 11:28
Forum: Laravel package
Topic: Using custom frontend to display site
Replies: 1
Views: 1135

Re: Using custom frontend to display site

Copy the existing Aimeos templates of the HTML client to your own extension and adapt them to your needs. Here are described the details: https://aimeos.org/docs/Developers/Html ... _templates
by aimeos
06 Nov 2017, 11:24
Forum: Laravel package
Topic: Composer Error
Replies: 7
Views: 3965

Re: Composer Error

That you didn't change the credentials in your .env file is exactly your problem! The MySQL server in your new environment doesn't accept the user name and password of the Homestead VM box
by aimeos
06 Nov 2017, 11:22
Forum: TYPO3 extension
Topic: Breadcrumb and Active Category in Detailview
Replies: 9
Views: 4512

Re: Breadcrumb and Active Category in Detailview

It's in the standard Aimeos setup. In TYPO3 it's in the output of the catalog stage plugin and can be found in this template:
https://github.com/aimeos/ai-client-htm ... lt.php#L61
by aimeos
05 Nov 2017, 11:42
Forum: Laravel package
Topic: Hide all products in 'list' page
Replies: 7
Views: 3772

Re: Hide all products in 'list' page

That might be the case. Please have a look into the Laravel documentation how it exactly works.
by aimeos
05 Nov 2017, 11:41
Forum: Help
Topic: How extendable is Aimeos?
Replies: 2
Views: 1232

Re: How extendable is Aimeos?

Aimeos is exactly build for that: To extend, modify, remove and add any feature/behavior you need. You can not only use Aimeos for online shops but also for any other e-commerce related project. Here's the Aimeos software stack for a quick overview of the system: https://aimeos.org/docs/Developers/S...
by aimeos
02 Nov 2017, 22:46
Forum: TYPO3 extension
Topic: Breadcrumb and Active Category in Detailview
Replies: 9
Views: 4512

Re: Breadcrumb and Active Category in Detailview

That's the breadcrumb in the detail view if you click on a product in the list view of the "Home" category (doesn't work for top sellers yet, somehow): aimeos-frontend-breadcrumb.jpg You can access all configuration in templates with $this->config(): https://aimeos.org/docs/Developers/Html...
by aimeos
02 Nov 2017, 22:38
Forum: Laravel package
Topic: Hide all products in 'list' page
Replies: 7
Views: 3772

Re: Hide all products in 'list' page

Change your Blade template to this: @extends('base') @section('aimeos_header') <?= $aiheader['catalog/filter'] ?> @stop @section('aimeos_nav') <?= $aibody['catalog/filter'] ?> @endsection The aimeos_header will contain the tags for retrieving the product counts and extending from "base" te...
by aimeos
02 Nov 2017, 12:02
Forum: TYPO3 extension
Topic: Breadcrumb and Active Category in Detailview
Replies: 9
Views: 4512

Re: Breadcrumb and Active Category in Detailview

Hello when i Navigate over an Categorytree i don't see any breadcrumb. Do you mean in the URL, e.g. /home/men/shorts? This is mainly due to TYPO3/frameworks which can't handle slashes in URL parameters well. And if i go in the Detailview of an Product the Category lost his Active-State. Its a littl...
by aimeos
01 Nov 2017, 13:09
Forum: TYPO3 extension
Topic: Language selector
Replies: 1
Views: 1039

Re: Language selector

Here's an article of how to add the language selector in the latest Aimeos Flow version:
https://aimeos.org/docs/Flow/Add_locale_selector
by aimeos
31 Oct 2017, 11:14
Forum: Laravel package
Topic: Composer Error
Replies: 7
Views: 3965

Re: Composer Error

Don't think that this is a problem of Aimeos. The credentials in the Laravel .env file doesn't allow the Laravel migrations to access the database or at least the MySQL information schema.