Search found 7865 matches

by aimeos
01 Oct 2017, 10:17
Forum: Laravel package
Topic: Paytm Integration
Replies: 10
Views: 3903

Re: Paytm Integration

Create a pull request and try to get the author to merge the bugfixes into the original repository.

The driver doesn't use the "returnUrl" provided and doesn't send it to Paytm. Thus, Paytm doesn't know where to redirect back.
by aimeos
01 Oct 2017, 10:13
Forum: TYPO3 extension
Topic: Catalog node for ID "" not available - SOLVED!
Replies: 3
Views: 2529

Re: Catalog node for ID "" not available

Looks like Neos is passing an empty parameter as default for the list route. Tried this with a plain Flow installation where this doesn't happen.

What is the URL in your address bar?
by aimeos
30 Sep 2017, 13:50
Forum: Laravel package
Topic: Monthly subscription feature for products
Replies: 15
Views: 5924

Re: Monthly subscription feature for products

Is the currency of the prices the same as the default currency you are using or the selected currency?
by aimeos
30 Sep 2017, 13:03
Forum: Laravel package
Topic: Integration of OTP feature on registration
Replies: 3
Views: 1504

Re: Integration of OTP feature on registration

Aimeos uses the Laravel infrastructure for user registration and login, so you have to check how to do this in Laravel.
by aimeos
30 Sep 2017, 12:37
Forum: Laravel package
Topic: Monthly subscription feature for products
Replies: 15
Views: 5924

Re: Monthly subscription feature for products

You need a price added to each variant article and add the lowest price also to the selection product. The minimum quantity should be 1 for all prices. If you don't add a price to each variant, the price of the selection product will be used. The price will be exchanged to that of the variant produc...
by aimeos
30 Sep 2017, 12:29
Forum: Laravel package
Topic: Integration of OTP feature on registration
Replies: 3
Views: 1504

Re: Integration of OTP feature on registration

What is OTP and how does is work?
by aimeos
30 Sep 2017, 12:28
Forum: Help
Topic: CSV Product Import not working
Replies: 32
Views: 26296

Re: CSV Product Import not working

If you don't need unique article SKUs and offer all possible variants, you can use product options for each dimension (color, size, etc). The only thing you have to overwrite in an additional Javascript function is to enforce the product options as required.
by aimeos
30 Sep 2017, 12:23
Forum: Help
Topic: CSV Product Import not working
Replies: 32
Views: 26296

Re: CSV Product Import not working

Most properly the working directory where the cronjob is exectued isn't the root directory of your TYPO3 installation. Please use an absolute path to:

Code: Select all

plugin.tx_aimeos.settings.controller.jobs.product.import.csv.location
by aimeos
30 Sep 2017, 12:16
Forum: Help
Topic: Attributes and categories
Replies: 7
Views: 3521

Re: Attributes and categories

You mean product attributes depending on the category? Not out of the box, you would need to adapt the template and add some if-conditions.

Can you give an example what you want to use it for?
by aimeos
28 Sep 2017, 21:08
Forum: Laravel package
Topic: Paytm Integration
Replies: 10
Views: 3903

Re: Paytm Integration

The Omnipay Paytm driver uses incorrect parameter names (self-invented vs. official): - OrderId vs. transactionId - TransactionAmount vs. amount You can see in the ai-payments extension what parameters as passed to the driver: https://github.com/aimeoscom/ai-payments/blob/master/lib/custom/src/MShop...