Search found 7914 matches

by aimeos
08 Oct 2017, 15:53
Forum: Laravel package
Topic: Override ext/ai-laravel
Replies: 6
Views: 3337

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

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

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

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

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

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

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.
by aimeos
06 Oct 2017, 20:02
Forum: Laravel package
Topic: need extra price for products
Replies: 5
Views: 2126

Re: need extra price for products

Just to make sure we aren't talking about different things: What is a "security price" in your context?
by aimeos
06 Oct 2017, 11:03
Forum: Help
Topic: CSV Product Import not working
Replies: 32
Views: 26557

Re: CSV Product Import not working

The example CSV doesn't fit to the current importer requirements any more. It needs at least the currency ID for each price and the non-existing attribute type (import-test) is also invalid. We will update the example CSV so it matches the implementation in version 2017.10.

Thanks for your patience!
by aimeos
06 Oct 2017, 11:00
Forum: Help
Topic: Product attributes
Replies: 5
Views: 2891

Re: Product attributes

Performance of Gettext mo files isn't a problem because they can be cached in APC if you enable that. But in your case it makes sense to use a translation table to for the attribute types if those values change more or less every day. Are you interested in creating a patch to implement that? We woul...