Search found 37 matches

by snicto
16 Jan 2024, 15:27
Forum: Laravel package
Topic: Dashboard doesn't return full date range
Replies: 0
Views: 2156

Dashboard doesn't return full date range

Version: 2022.10 I need to extend the dashboard, but before I can do that, I came across that our dashboard is not returning all of data: https://sationibags.com/Snapshot_2024-01-16_171331.png The params seem to be sent with correct date range, but it gets lost into manager somehow: "$view->par...
by snicto
12 May 2023, 13:20
Forum: Laravel package
Topic: Free Shipping for Category only
Replies: 1
Views: 1869

Free Shipping for Category only

I want to set FreeShipping for a specific Category only. When I use them both together when setting up a coupon, in the end, FreeShipping is applied regardless of whether the product/products are in the specific category. Do I require a custom Extension to achieve this, or is there a way to use the ...
by snicto
27 Mar 2023, 17:02
Forum: Laravel package
Topic: FreeShipping and Category throws SQL error
Replies: 1
Views: 7520

FreeShipping and Category throws SQL error

We were trying to create FreeShipping for a specific category. However, it seems to be throwing an SQL error. Could you point me to the culprit in this instance? It is throwing errors only with category extension enabled. SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in y...
by snicto
09 Mar 2023, 15:33
Forum: Laravel package
Topic: base/order into basket
Replies: 1
Views: 692

base/order into basket

We have emails being sent on failed purchases, which have a link to try again purchase. The issue I am having is loading the base/order item into a basket to save it in the current session since the basket is not being saved without it. I am loading basket via: $orderBaseItem = \Aimeos\MShop::create...
by snicto
09 Feb 2023, 14:41
Forum: Laravel package
Topic: Basket empty after login
Replies: 9
Views: 107130

Re: Basket empty after login

I was testing this on a clean install of the latest version of the stand-alone Laravel version. And the same is happening there. If you have anything in the basket and log in, the basket contents are lost and it is empty. Is it meant to be that way? Kinda illogical that person would lose the basket...
by snicto
08 Feb 2023, 16:13
Forum: Laravel package
Topic: Delivery service 'process' not triggered.
Replies: 1
Views: 631

Delivery service 'process' not triggered.

I have created custom delivery, service providers. They work fine, however, I need to pass some information to an external system once the order is placed. According to documentation the process function should take care of it. The issue is that it is never called, and I cannot figure out who is res...
by snicto
07 Feb 2023, 20:16
Forum: Laravel package
Topic: Basket empty after login
Replies: 9
Views: 107130

Re: Basket empty after login

I was testing this on a clean install of the latest version of the stand-alone Laravel version. And the same is happening there. If you have anything in the basket and log in, the basket contents are lost and it is empty. Is it meant to be that way? Kinda illogical that person would lose the basket ...
by snicto
02 Feb 2023, 16:49
Forum: Laravel package
Topic: Basket empty after login
Replies: 9
Views: 107130

Re: Auth pages using Aimeos views

It is the default implementation of the store handler.
by snicto
01 Feb 2023, 15:28
Forum: Laravel package
Topic: Basket empty after login
Replies: 9
Views: 107130

Basket empty after login

Version: 2022.10 I got the pages to fully show up, function, etc. However, I am having a small issue with retaining basket data. I cannot figure out why when the user logs in the basket and data is lost. Below you can see my "AuthenticatedSessionController.php": <?php namespace App\Http\Co...
by snicto
25 Jan 2023, 19:55
Forum: Laravel package
Topic: Auth pages using Aimeos views
Replies: 1
Views: 963

Auth pages using Aimeos views

All authorization pages use their own views and etc. How could I add existing Aimeos theme views to the login forms? Basically, I want to achieve that authorization pages look the same as shop pages, so the user feels like he is still on the same page, not directed to some backend page.