Search found 7940 matches

by aimeos
31 Oct 2017, 11:14
Forum: Laravel package
Topic: Composer Error
Replies: 7
Views: 3936

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.
by aimeos
30 Oct 2017, 20:41
Forum: TYPO3 extension
Topic: Skip the last checkout page
Replies: 1
Views: 1055

Re: Skip the last checkout page

Which payment gateway do you use?
Seems like it's an Omnipay gateway and "omnipay.onsite = 1" is configured in the service provider in the admin interface.
by aimeos
30 Oct 2017, 19:34
Forum: TYPO3 extension
Topic: How to apply my own theme
Replies: 5
Views: 3879

Re: How to apply my own theme

I must be honest and say that the documentation confuses me quite a lot. I thought changing a theme would work like the templates, through the extension, and not through the Default.html template in Aimeos.Shop. What happends when we update? Does the template default to its original code, or does i...
by aimeos
30 Oct 2017, 15:09
Forum: TYPO3 extension
Topic: How to change templates
Replies: 12
Views: 5322

Re: How to change templates

The Flow framework is most probably the hardest one to use because the framework is very complex so integration isn't easy. Laravel is much easier for example and the Aimeos integration works well for many developers adapting it to their needs.
by aimeos
30 Oct 2017, 14:57
Forum: Laravel package
Topic: Hide all products in 'list' page
Replies: 7
Views: 3739

Re: Hide all products in 'list' page

Best is to create a new page for this.
An alternative would be to configure a default category ID of a category that has no products:
https://aimeos.org/docs/Configuration/C ... id-default
by aimeos
30 Oct 2017, 14:55
Forum: TYPO3 extension
Topic: How to change templates
Replies: 12
Views: 5322

Re: How to change templates

Where is your own extension located in your Flow application?
by aimeos
30 Oct 2017, 14:38
Forum: Laravel package
Topic: Hide all products in 'list' page
Replies: 7
Views: 3739

Re: Hide all products in 'list' page

Simply remove the "catalog/lists" part from the page you want this to happen:
https://github.com/aimeos/aimeos-larave ... op.php#L21

Most probably you want to create a new page. Then, please have a look into these articles:
https://aimeos.org/docs/Laravel#Pages
by aimeos
30 Oct 2017, 14:27
Forum: TYPO3 extension
Topic: Upload of many unique coupon codes
Replies: 10
Views: 3962

Re: Upload of many unique coupon codes

Parallel processing in the tasks led to the problem that you don't see the reason immediately. Most of the time, you need to have a look into the madmin_log table for details. If you run "composer update", you will get a new version of the Aimeos 2017.10 core. It contains a change that pri...
by aimeos
29 Oct 2017, 18:06
Forum: TYPO3 extension
Topic: How to apply my own theme
Replies: 5
Views: 3879

Re: How to apply my own theme

It doesn't work that way. The "client/html/common/template/baseurl" setting is only used to find the CSS files that are included in the HTML e-mails. In Flow, there's a layout file that contains the URLs to the CSS and JS files: https://github.com/aimeos/aimeos-flow/blob/master/Resources/P...
by aimeos
29 Oct 2017, 13:30
Forum: TYPO3 extension
Topic: When we change the language in product detail page
Replies: 6
Views: 3377

Re: When we change the language in product detail page

We got a bit further: The problem isn't RealUrl but TYPO3 seems to cache the language selector. The language URLs then contain old parameters (e.g. f_catid/d_prodid) so switching languages also switches back to previous list and detail views. Does anybody know how to configure the TYPO3 language men...