Search found 7907 matches

by aimeos
25 Oct 2017, 10:25
Forum: Laravel package
Topic: Aimeos routes
Replies: 5
Views: 3979

Re: Aimeos routes

Laravel allows you to overwrite routes in the routes/web.php file. Might be something like this: Route::group(config('shop.routes.default', ['middleware' => ['web']]), function() { Route::match( array( 'GET', 'POST' ), 'products', array( 'as' => 'aimeos_shop_list', 'uses' => 'Aimeos\Shop\Controller\...
by aimeos
25 Oct 2017, 10:18
Forum: TYPO3 extension
Topic: Show Categories in catalog/lists/body-default.php
Replies: 6
Views: 7211

Re: Show Categories in catalog/lists/body-default.php

The Pagination snippet was just a example. I ask where i find this in the documentation. in the hope to find the rest of posibilities there... The parameters for partials that are meant for being used by several templates are documented in the head of the partial files: https://github.com/aimeos/ai...
by aimeos
25 Oct 2017, 09:00
Forum: TYPO3 extension
Topic: How to change templates
Replies: 12
Views: 5184

Re: How to change templates

Did you cleared the Aimeos content cache (./flow aimeos:cache) or configured no caching for development?
https://github.com/aimeos/aimeos-flow/b ... E.md#hints
by aimeos
25 Oct 2017, 08:51
Forum: TYPO3 extension
Topic: Show Categories in catalog/lists/body-default.php
Replies: 6
Views: 7211

Re: Show Categories in catalog/lists/body-default.php

But the example used for pagination is no where documented... Can i just use this common partials or how you know how to set up this pagination from catalog/lists/body-default.php 'params' => $params, // Associative list of additional parameters for the URL, e.g. "[f_catid => 1]" 'size' =...
by aimeos
25 Oct 2017, 08:43
Forum: TYPO3 extension
Topic: Google shopping feed
Replies: 1
Views: 1401

Re: Google shopping feed

You can create a job controller similar to the sitemap controller:
https://github.com/aimeos/ai-controller ... rt/Sitemap

We would love to get a pull request for this feature :-)
by aimeos
23 Oct 2017, 21:18
Forum: Laravel package
Topic: Aimeos routes
Replies: 5
Views: 3979

Re: Aimeos routes

by aimeos
23 Oct 2017, 21:16
Forum: TYPO3 extension
Topic: Show Categories in catalog/lists/body-default.php
Replies: 6
Views: 7211

Re: Show Categories in catalog/lists/body-default.php

I also dont understand how i can just add under the search input field an simple basket-button with the target configured in the minicart. Do you want to display the mini basket itself under the search field or a (list of) product(s)? its all a little bit confusing and its not really a typo3-extens...
by aimeos
23 Oct 2017, 11:46
Forum: TYPO3 extension
Topic: No Typo3like Database definition
Replies: 1
Views: 1043

Re: No Typo3like Database definition

Aimeos database setup works differently because it supports not only TYPO3 and duplicating table definitions won't work with 3rd party extensions. We still try to convince the TYPO3 people so we can hide our own tables:
https://github.com/aimeos/aimeos-typo3/issues/7
by aimeos
23 Oct 2017, 11:43
Forum: TYPO3 extension
Topic: Aimeos shop data migration
Replies: 2
Views: 1685

Re: Aimeos shop data migration

Don't know if anyone used the tx_commerce migration extension in the last two years but I doubt that, so it might be out of sync. The other thing is, Aimeos 16.7 isn't supported since at least one year. You should upgrade to 17.10 LTS. If you have a lot of products and want to use the migration from...
by aimeos
23 Oct 2017, 11:37
Forum: Laravel package
Topic: set special offer with lower price for at a limited time?
Replies: 7
Views: 3226

Re: set special offer with lower price for at a limited time

Adds these products to the root category. You can then add a new "home" page ( https://github.com/aimeos/aimeos-laravel/blob/master/src/config/shop.php#L16 ) using "catalog/lists" component. In the action of your controller for the home page, retrieve the list view like here: htt...