Search found 7872 matches

by aimeos
27 Sep 2017, 14:39
Forum: Laravel package
Topic: Paytm Integration
Replies: 10
Views: 3915

Re: Paytm Integration

The easiest way is installing the ai-payments extension and using an Omnipay driver. For Paytm there's already one implemented:
https://github.com/sumityadav/omnipay-paytm

You should try if it works out of the box. Sometimes minor fixes are necessary to get drivers running.
by aimeos
27 Sep 2017, 08:27
Forum: Laravel package
Topic: error: No item found for conditions: Array ( [attribute.code
Replies: 6
Views: 3285

Re: error: No item found for conditions: Array ( [attribute.

You can always recreate these attributes by running the Aimeos setup
by aimeos
26 Sep 2017, 22:00
Forum: Laravel package
Topic: Mapping different products
Replies: 8
Views: 7059

Re: Mapping different products

You may have forgotten to extend from the existing class like this:

Code: Select all

class Factory
	extends \Aimeos\Controller\Jobs\Product\Import\Csv\Factory
	implements \Aimeos\Controller\Jobs\Common\Factory\Iface
by aimeos
26 Sep 2017, 15:32
Forum: Laravel package
Topic: Mapping different products
Replies: 8
Views: 7059

Re: Mapping different products

You can copy and extend from the existing factory ( https://github.com/aimeos/ai-controller-jobs/blob/master/controller/jobs/src/Controller/Jobs/Product/Import/Csv/Factory.php ), e.g. to a sub-directory controller/jobs/src/Controller/Jobs/Product/Import/Csv/Clothes/Factory.php in your own Aimeos ext...
by aimeos
26 Sep 2017, 11:15
Forum: Laravel package
Topic: Override aimeos class
Replies: 3
Views: 1713

Re: Override aimeos class

The easier way would be to add a translatable hint for the code like realized here:
https://github.com/aimeos/ai-client-htm ... t.php#L124
by aimeos
26 Sep 2017, 11:14
Forum: Laravel package
Topic: Attribute translations
Replies: 1
Views: 983

Re: Attribute translations

Not in the database but you can translate the type codes into different languages in the frontend like here:
https://github.com/aimeos/ai-client-htm ... t.php#L122
by aimeos
26 Sep 2017, 11:11
Forum: Laravel package
Topic: Mapping different products
Replies: 8
Views: 7059

Re: Mapping different products

Can you explain that in more detail please?
by aimeos
25 Sep 2017, 20:58
Forum: Laravel package
Topic: Override aimeos class
Replies: 3
Views: 1713

Re: Override aimeos class

Can you explain which parameter you would like to add for what reason?
by aimeos
25 Sep 2017, 20:57
Forum: Laravel package
Topic: How to adapt aimeos to ecommerce requirements
Replies: 1
Views: 980

Re: How to adapt aimeos to ecommerce requirements

Use brands as categories and models as sub-categories and add your articles to these categories. If you have parts that exists in different variants (e.g. in different colors), then use selection products to group the articles together.
by aimeos
25 Sep 2017, 20:53
Forum: Laravel package
Topic: Passing error messages during checkout process
Replies: 3
Views: 1640

Re: Passing error messages during checkout process

You should have a look at the ai-payments extension which does that already:
https://github.com/aimeoscom/ai-payment ... y.php#L724