Search found 13 matches

by Amir
02 Mar 2020, 15:32
Forum: Help
Topic: Help in payment integration
Replies: 1
Views: 970

Help in payment integration

We need support in implementing PayTabs payment Integration
https://dev.paytabs.com/docs/paypage

Can you give me instructions for me to implement it or do we need your support
by Amir
26 Feb 2020, 10:42
Forum: Laravel package
Topic: Getting data from database to Admin interface
Replies: 3
Views: 1837

Re: Getting data from database to Admin interface

thanks for your suggestion I am using the log panel source and template now and renamed the files and the occurrence of the variables and namespace and I have added a link to the navbar And It did show an empty log page but there is an error Class "\Aimeos\MAdmin\Suggest\Manager\Factory" n...
by Amir
25 Feb 2020, 02:09
Forum: Laravel package
Topic: Getting data from database to Admin interface
Replies: 3
Views: 1837

Getting data from database to Admin interface

I want to extend the admin interface to add a page that show the users request services ( I have added a controller and a view for users to add services to the table named "suggested_services" and I want Admin to view them ). I copied the Order folders in JqAdm and I tried to modify it to ...
by Amir
24 Feb 2020, 12:33
Forum: Laravel package
Topic: Getting the current language in Aimeos
Replies: 3
Views: 1504

Re: Getting the current language in Aimeos

the code

Code: Select all

App::isLocale('en')
returns 1 which will always display one direction only, I'm using the select/locale switcher from aimeos.

And I tried setting the locale in the service provider to get it to work and it does, but the product language are independent from the global locale I've set.
by Amir
22 Feb 2020, 17:46
Forum: Laravel package
Topic: Getting the current language in Aimeos
Replies: 3
Views: 1504

Getting the current language in Aimeos

I want to check the current language to switch the HTML rendering from Left To Right to Right To Left. I've checked it using

Code: Select all

 dir="{{ Lang::locale() === "en" ? "ltr" : "rtl" }}"
but it always displays ltr. How to achieve that?
by Amir
22 Feb 2020, 12:58
Forum: Laravel package
Topic: Omnipay Integration
Replies: 1
Views: 860

Omnipay Integration

I want to have an integrated payment for purchasing with credit cards. and I want to use omnipay. my required composer.json array is as follows: "require": { "php": "^7.2", "academe/omnipay-adyen": "^3.0", "aimeos/ai-payments": "~2019....
by Amir
20 Feb 2020, 12:30
Forum: Laravel package
Topic: Setting a product with different prices
Replies: 3
Views: 1323

Re: Setting a product with different prices

When I do that, Both prices for the two variations shows at the same time
by Amir
20 Feb 2020, 01:41
Forum: Laravel package
Topic: Implementing a One Page Checkout
Replies: 1
Views: 922

Implementing a One Page Checkout

I want to implement a one page checkout and what I did was: 'checkout' => [ 'standard' => [ 'onepage' => ['address','payment'] ] ], but when I click checkout it goes to a page called checkout where all process are there ( I don't want this page) but when I click one address it takes me to a page whe...
by Amir
19 Feb 2020, 23:27
Forum: Laravel package
Topic: Setting a product with different prices
Replies: 3
Views: 1323

Setting a product with different prices

I want to add a product with two variant that changes their price when selected ( because of different sizes ex. [ 5 kg, 10 kg ] ). I've added a selection product with two articles that one of them have a price and I the selection itself has price as a price for the default product. And in the produ...
by Amir
19 Feb 2020, 22:14
Forum: Laravel package
Topic: Implementing Delivery Price
Replies: 1
Views: 802

Implementing Delivery Price

I want to set the delivery price on the overall cart not on a single product. Is there a way of doing so, How to achieve that?