Search found 51 matches

by bill
14 Aug 2017, 15:09
Forum: Laravel package
Topic: Change/ update order with new payment
Replies: 4
Views: 2515

Re: Change/ update order with new payment

Sounds like s good idea

but how do we delete the order? I cant find a function that would delete the order by the orderid?
by bill
10 Aug 2017, 16:04
Forum: Laravel package
Topic: Change/ update order with new payment
Replies: 4
Views: 2515

Change/ update order with new payment

Hi Currently in Aimeos , if you are in checkout and you selected for example Paypal , it creates an order ID and redirects you to Paypal , but what I noticed if you cancel and it takes you back to the confirmation page where you can change the payment, if you click on change payment , it will take y...
by bill
14 Jul 2017, 11:49
Forum: Laravel package
Topic: (1/1) InvalidArgumentException Route [] not defined.
Replies: 3
Views: 2713

Re: (1/1) InvalidArgumentException Route [] not defined.

I am getting that error for all urls

Also I update my composer with "dev-master" and that is when the error occurs I wanted to fix the issue with the payment gateways

Any idea how to fix it ? Are you telling me to check the routes.php file ?
by bill
14 Jul 2017, 00:18
Forum: Laravel package
Topic: (1/1) InvalidArgumentException Route [] not defined.
Replies: 3
Views: 2713

(1/1) InvalidArgumentException Route [] not defined.

HI I am getting this error: (1/1) InvalidArgumentException Route [] not defined. when I tried to do composer update : here is my composer.json "require": { "php": ">=5.6.4", "aimeos/aimeos-laravel": "dev-master", "aimeos/ai-payments": "...
by bill
30 Jun 2017, 21:20
Forum: Laravel package
Topic: Add supplier drop down option to Aimeos Admin?
Replies: 9
Views: 5834

Re: Add supplier drop down option to Aimeos Admin?

If I want to add this code in our /ext folder for the client controller , can I override or add it to the (client) controller instead inside the template code?

is that possible and how we could do that?

Thanks in advance
by bill
29 Jun 2017, 18:53
Forum: Laravel package
Topic: Add supplier drop down option to Aimeos Admin?
Replies: 9
Views: 5834

Re: Add supplier drop down option to Aimeos Admin?

What is really the best way to get it inside the client/html/basket/body-default.php ; I need to print the supplier Code for the product attached to it I did this code below but seems its doing a search twice? one for 'supplier/list' and one for 'supplier'? is there away we can make it simpler? // N...
by bill
29 Jun 2017, 12:58
Forum: Laravel package
Topic: Add supplier drop down option to Aimeos Admin?
Replies: 9
Views: 5834

Re: Add supplier drop down option to Aimeos Admin?

Can you show me the code to fetch the supplier by product ID ? Assuming I am in the basket page ?
by bill
28 Jun 2017, 18:21
Forum: Laravel package
Topic: Add supplier drop down option to Aimeos Admin?
Replies: 9
Views: 5834

Add supplier drop down option to Aimeos Admin?

Hi

I am trying to add suppliers options for each product in the Aimeos admin and I need to get that in the front end?

currently see my screenshot I don't have that option

can you please help me?
by bill
26 Jun 2017, 18:23
Forum: Laravel package
Topic: Changing header & body for mini basket?
Replies: 12
Views: 5626

Re: Changing header & body for mini basket?

in my config/app.php I have changed the order

Code: Select all

 'providers' => [
Aimeos\Shop\ShopServiceProvider::class,
App\Providers\AppServiceProvider::class,
now I am getting not getting the error but the mini cart but its always empty, you know why?
by bill
26 Jun 2017, 16:37
Forum: Laravel package
Topic: Changing header & body for mini basket?
Replies: 12
Views: 5626

Re: Changing header & body for mini basket?

In my AppServiceProvider.php I have this in boot() public function boot() { $minibasket = app( '\Aimeos\Shop\Base\Page' )->getSections( 'aimeosall' ); view()->share('var', $minibasket); } this is getting me an error: [InvalidArgumentException] Route [aimeos_shop_jsonapi_options] not defined. Do you ...