Search found 7912 matches

by aimeos
26 Oct 2017, 12:16
Forum: TYPO3 extension
Topic: Upload PDF
Replies: 3
Views: 1773

Re: Upload PDF

This has been fixed in the latest Aimeos core (2017.10.4). If you use composer, you can install the new core version by executing "composer update". To get all media items of a special type, use $productItem->getRefItems( 'media', '<type>' ) where type is the type code you selected in the ...
by aimeos
26 Oct 2017, 09:39
Forum: Help
Topic: CLI error
Replies: 1
Views: 1077

Re: CLI error

Please list all information about your environment
by aimeos
26 Oct 2017, 09:09
Forum: Laravel package
Topic: Admin Page returns Exception
Replies: 2
Views: 1283

Re: Admin Page returns Exception

The user you've logged in with doesn't have a value in the siteid column of the users table because it wasn't created by the "./artisan aimeos:account" command.

To get around this, we released a new version (2017.10.3) which handles this without throwing an error.
by aimeos
26 Oct 2017, 08:34
Forum: TYPO3 extension
Topic: How to change templates
Replies: 12
Views: 5190

Re: How to change templates

No, "items-body-list.php" is the alternative list view (texts and price right of the image). The standard list view in generated by the "items-body-default.php" template file.
by aimeos
25 Oct 2017, 15:20
Forum: TYPO3 extension
Topic: Trouble while installing aimeos extension 17.10.0
Replies: 2
Views: 1483

Re: Trouble while installing aimeos extension 17.10.0

APC cache is hard to clear. Either you can restart the web server or you install a tool for managing the APCu cache
by aimeos
25 Oct 2017, 10:25
Forum: Laravel package
Topic: Aimeos routes
Replies: 5
Views: 3983

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: 7214

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: 5190

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: 7214

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: 1404

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 :-)