Search found 7907 matches

by aimeos
09 Oct 2017, 21:30
Forum: TYPO3 extension
Topic: When we change the language in product detail page
Replies: 6
Views: 3298

Re: When we change the language in product detail page

Do you use RealUrl? Looks like a problem when RealUrl decodes the URL to the parameters of another URL.
by aimeos
09 Oct 2017, 21:27
Forum: Help
Topic: Image Upload
Replies: 5
Views: 3716

Re: Image Upload

by aimeos
08 Oct 2017, 16:09
Forum: Laravel package
Topic: need extra price for products
Replies: 5
Views: 2121

Re: need extra price for products

So the security price isn't optional. You can change the "preselect" setting for this attribute so customers are not able to de-select it: https://github.com/aimeos/ai-client-html/blob/master/client/html/templates/common/partials/attribute-default.php#L32 Alternatively, you can use the sum...
by aimeos
08 Oct 2017, 15:53
Forum: Laravel package
Topic: Override ext/ai-laravel
Replies: 6
Views: 3332

Re: Override ext/ai-laravel

You can overwrite the manager class to. Create a new class in your extension in the ./lib/custom/src/MShop/Customer/Manager/Myproject.php extend from \Aimeos\MShop\Customer\Manager\Laravel and overwrite the methods you need. Afterwards, configure your shop to use your new class with https://aimeos.o...
by aimeos
08 Oct 2017, 15:49
Forum: Laravel package
Topic: Import limit
Replies: 3
Views: 1527

Re: Import limit

If I remember correctly, this is fixed in dev-master and will be part of the release next week.
by aimeos
08 Oct 2017, 15:48
Forum: Help
Topic: Attributes and categories
Replies: 7
Views: 3582

Re: Attributes and categories

No, it would still be one backend where editors can switch between shops.
But if you want to sell tires and shirts in one order, this doesn't work. Then, we would recommend the suggestion of Metalics to hide the attributes and types with no products found via Javascript.
by aimeos
08 Oct 2017, 15:44
Forum: Help
Topic: Product attributes
Replies: 5
Views: 2884

Re: Product attributes

Yes, aimeos-core in an own branch would be the best place. At first, we need to add the required table in https://github.com/aimeos/aimeos-core/blob/master/lib/mshoplib/setup/default/schema/attribute.php . I would suggest that layout: 'mshop_attribute_type_i18n' => function ( \Doctrine\DBAL\Schema\S...
by aimeos
07 Oct 2017, 10:55
Forum: Laravel package
Topic: Override ext/ai-laravel
Replies: 6
Views: 3332

Re: Override ext/ai-laravel

Yes, create a file "mshop.php" in the "./lib/custom/config/" directory of your extension with the same array structure and add the SQL statements you want to overwrite.
by aimeos
06 Oct 2017, 20:34
Forum: Help
Topic: CSV Product Import not working
Replies: 32
Views: 26499

Re: CSV Product Import not working

We've updated the product CSV file and the required mapping in the Wiki:
https://aimeos.org/docs/Developers/Cont ... lt_mapping

Can you please update your mapping and try to import the new file?
by aimeos
06 Oct 2017, 20:04
Forum: Laravel package
Topic: Get site orders
Replies: 3
Views: 1644

Re: Get site orders

Have you read this article?
https://aimeos.org/docs/Laravel/Extend_ ... os_objects

It explains how to access the Aimeos data from a Laravel controller.