Search found 56 matches

by DmS
17 Sep 2021, 09:07
Forum: Laravel package
Topic: Voucher issue
Replies: 7
Views: 1780

Voucher issue

Hi. I've setup a voucher in admin according to the docs here https://aimeos.org/docs/2021.x/manual/coupons/#voucher , connected it to a reduction-product. I can purchase the voucher, I get the mail with the code for the voucher. But when I enter it in the Coupons in the basket, I get "Coupon is...
by DmS
14 Sep 2021, 13:44
Forum: Laravel package
Topic: Translation issue?
Replies: 3
Views: 1054

Re: Translation issue?

Added client .po and client/code .po with swedish translations to transifex
by DmS
13 Sep 2021, 13:52
Forum: Laravel package
Topic: Translation issue?
Replies: 3
Views: 1054

Re: Translation issue?

Found it.
For others that wonder, these translations are .po files in the i18n/code/ folder
To translate to text, add the text you want, to remove, add a whitespace as translation.
/Dan
by DmS
13 Sep 2021, 13:02
Forum: Laravel package
Topic: Translation issue?
Replies: 3
Views: 1054

Translation issue?

I've added a new translation file for swedish for the client side in my extension. This all works very well. But on the product detail page I get this text above the add to basket button Finns i lager stocktype:default The "Finns i lager" is my translation for stock-high but want to get th...
by DmS
07 Sep 2021, 09:54
Forum: Laravel package
Topic: Implementing Klarna Checkout service not working
Replies: 9
Views: 2456

Re: Implementing Klarna Checkout service not working

Right, thank you,
It will have to be a custom service provider then.
by DmS
06 Sep 2021, 15:53
Forum: Laravel package
Topic: Implementing Klarna Checkout service not working
Replies: 9
Views: 2456

Re: Implementing Klarna Checkout service not working

After a lot of debugging, everything points to the OmniPay gateway not getting the items from the basket plus having different parameter names than expected in the Klarna service. When I'm dumping the object here, there is no info on what products are in the basket: $data = $this->getData( $base, $o...
by DmS
06 Sep 2021, 10:10
Forum: Laravel package
Topic: Implementing Klarna Checkout service not working
Replies: 9
Views: 2456

Re: Implementing Klarna Checkout service not working

Ah, ok. Fixed the provider override where I was wrong, thanx. Still getting the "The items parameter is required" when trying to pay Also tried with the standard OmniPay provider and the type = \MyOnlineStore\Omnipay\KlarnaCheckout\Gateway I'm getting the exact same result, so I think I'm ...
by DmS
02 Sep 2021, 11:40
Forum: Laravel package
Topic: Implementing Klarna Checkout service not working
Replies: 9
Views: 2456

Re: Implementing Klarna Checkout service not working

I'll post an issue. For now I'm slowly getting closer. I've created a new provider in my extension that overrides the getProvider method from OmniPay <?php namespace Aimeos\MShop\Service\Provider\Payment; class KlarnaKco extends \Aimeos\MShop\Service\Provider\Payment\OmniPay implements \Aimeos\MShop...
by DmS
01 Sep 2021, 13:36
Forum: Laravel package
Topic: Implementing Klarna Checkout service not working
Replies: 9
Views: 2456

Re: Implementing Klarna Checkout service not working

Ok, thank you. That's unfortunate of them, especially since they are on Omnipay list of plugins. I'll take a look at creating a custom provider as you suggest. But in theory, should I change the namespace in their code, then it should work with your Omnipay privider? I won't do that since it's break...
by DmS
31 Aug 2021, 12:59
Forum: Laravel package
Topic: Implementing Klarna Checkout service not working
Replies: 9
Views: 2456

Implementing Klarna Checkout service not working

Hi. I'm having issues with understanding how to setup Klarna KCO from https://github.com/MyOnlineStore/omnipay-klarna-checkout I've installed ai-payments I installed Klarna Checkout via composer require myonlinestore/omnipay-klarna-checkout When setting up the new service, I've set Type : Payment Pr...