Search found 7597 matches

by aimeos
24 Mar 2017, 15:44
Forum: Help
Topic: User delivery & billing address in customer profile section
Replies: 2
Views: 1900

Re: User delivery & billing address in customer profile sect

They are not shown by default but you can use the "account/profile" HTML client to display that information. If you would like to show the data only, you can add the code to display it in the account/profile/body-default.php template: https://github.com/aimeos/ai-client-html/blob/master/cl...
by aimeos
24 Mar 2017, 13:37
Forum: TYPO3 extension
Topic: Feteching data from repository
Replies: 2
Views: 1383

Re: Feteching data from repository

Aimeos doesn't use ExtBase for managing and retrieving data. That wouldn't be portable and too slow. Instead, you should use the Aimeos managers to get the data you need: https://aimeos.org/docs/Developers/Library/Managing_items To get the necessary Aimeos context in TYPO3, use $config = \Aimeos\Aim...
by aimeos
24 Mar 2017, 13:29
Forum: Help
Topic: Action buttons in list view
Replies: 8
Views: 3694

Re: Action buttons in list view

We simplified that a bit further and replaced the actions subpart with a partial just like for the social media links: - https://github.com/aimeos/ai-client-html/blob/master/client/html/templates/catalog/detail/body-default.php#L261 - https://github.com/aimeos/ai-client-html/blob/master/client/html/...
by aimeos
24 Mar 2017, 07:58
Forum: Help
Topic: Action buttons in list view
Replies: 8
Views: 3694

Re: Action buttons in list view

Yes, you can simply copy the code from the detail template to the list template:
https://github.com/aimeos/ai-client-htm ... efault.php
by aimeos
24 Mar 2017, 07:56
Forum: Help
Topic: Product Rating
Replies: 1
Views: 1390

Re: Product Rating

Product ratings are not yet included. You are the first one who is asking for this.
by aimeos
24 Mar 2017, 07:55
Forum: Laravel package
Topic: I would like to add product programmability to the catalog
Replies: 3
Views: 1649

Re: I would like to add product programmability to the catal

The standard extension directory in Laravel for Aimeos is "./ext/" (in your application directory alongside with ./public/, ./app/, etc.)
by aimeos
23 Mar 2017, 13:07
Forum: Laravel package
Topic: I would like to add product programmability to the catalog
Replies: 3
Views: 1649

Re: I would like to add product programmability to the catal

Please create your own product specific Aimeos extension for all your code, templates and modifications:
https://aimeos.org/docs/Developers/Create_an_extension
by aimeos
22 Mar 2017, 17:04
Forum: TYPO3 extension
Topic: Use of Fluid templates
Replies: 6
Views: 3730

Re: Use of Fluid templates

1) How precisely do you access the data you need? Which view helper should I use to get contents like $this->get( 'detailBody' ) ? How can short php blocks before <?php $this->block()->start( ' ... ' ); ?> be realized? That's described in the docs: https://aimeos.org/docs/TYPO3/Use_Fluid_templates#...
by aimeos
22 Mar 2017, 13:39
Forum: TYPO3 extension
Topic: Language and currency translation using Aimeos Typo3 shop
Replies: 1
Views: 1293

Re: Language and currency translation using Aimeos Typo3 sh

Yes, that's correct. To use Aimeos as part of a TYPO3 installation, you have to configure the languages in TYPO3 (config.language) and use the TYPO3 "L"-Parameter to switch between them.
by aimeos
20 Mar 2017, 18:19
Forum: Laravel package
Topic: Configuration parameter "adapter" missing in "db"
Replies: 7
Views: 3924

Re: Configuration parameter "adapter" missing in "db"

We get the same problem when using the default "./config/shop.php" because it contains these lines: 'resource' => array( 'db' => array( // 'adapter' => env('DB_CONNECTION', 'mysql'), // 'host' => env('DB_HOST', 'localhost'), // 'port' => env('DB_PORT', ''), // 'socket' => '', // 'database'...