Search found 15 matches

by nvdid
07 Apr 2024, 19:25
Forum: Help
Topic: JsonApi: Stock level mixed with f_catid when fetching products
Replies: 2
Views: 14314

Re: JsonApi: Stock level mixed with f_catid when fetching products

Thanks for the info. Fixed! I forgot to run the cronjobs and the index was not fresh :roll:
by nvdid
05 Apr 2024, 17:20
Forum: Help
Topic: JsonApi: Stock level mixed with f_catid when fetching products
Replies: 2
Views: 14314

JsonApi: Stock level mixed with f_catid when fetching products

Hi dear aimeos team Fetching products from options.meta.resources.product shows all products, which is expected. But when I add filter[f_catid] it shows only products in stock. Is there a way to show all products regardless of stock in that case? Also couldn't find a filter for stock when fetching p...
by nvdid
08 Mar 2024, 11:38
Forum: Help
Topic: Route [aimeos_page] not defined
Replies: 6
Views: 61622

Re: Route [aimeos_page] not defined

No, the Stripe payment provider implementation requires the HTML frontend and doesn't work in headless environments like described in the docs. You need your own JS only implementation using the Stripe API. Right. I'm not trying to use Stripe. What I need in my headless project is to simply redirec...
by nvdid
07 Mar 2024, 19:07
Forum: Help
Topic: Route [aimeos_page] not defined
Replies: 6
Views: 61622

Re: Route [aimeos_page] not defined

Reading https://aimeos.org/help/viewtopic.php?f=18&t=5404#p20917 : If you are using the Aimeos headless distribution, you can't use any of the Omnipay drivers as they need the HTML frontend. For pure PWA JS applications, you have to use JS-only solutions like Stripe JS, which you have to add to ...
by nvdid
06 Mar 2024, 16:36
Forum: Help
Topic: Route [aimeos_page] not defined
Replies: 6
Views: 61622

Re: Route [aimeos_page] not defined

Hi. By default in Aimeos doesn't exist route with the name 'aimeos_page'. You can check more details about your project routes using 'php artisan route:list' in the terminal.. Can you please hint more on this? I tried to define the routes as said in https://github.com/aimeos/ai-cms-grapesjs#laravel...
by nvdid
05 Mar 2024, 19:39
Forum: Help
Topic: Route [aimeos_page] not defined
Replies: 6
Views: 61622

Route [aimeos_page] not defined

Hi dear Aimeos team I'm working with the aimeos headless project. I created a payment provider so I can simply redirect the user to a payment gateway outside my website. The order is created ok. But opening the return url ( $this->getConfigValue(array('payment.url-success')) ) shows the error Route ...
by nvdid
21 Feb 2024, 14:04
Forum: Help
Topic: Create extension
Replies: 10
Views: 60699

Re: Create extension

Awsome. Thanks :)
by nvdid
19 Feb 2024, 10:47
Forum: Help
Topic: Create extension
Replies: 10
Views: 60699

Re: Create extension

Right. If I understood correctly, this way we can overwrite manager for cms or e.g. cms/media . But I don't get it for Cms/Item/Standard.php ( https://github.com/aimeos/ai-cms-grapesjs/blob/master/src/MShop/Cms/Item/Standard.php ). Are you suggesting to set config mshop/cms/manager/lists/type/name f...
by nvdid
18 Feb 2024, 13:30
Forum: Help
Topic: Price rules
Replies: 4
Views: 20865

Re: Price rules

It's so great and useful. Thanks you so much
by nvdid
18 Feb 2024, 13:25
Forum: Help
Topic: Create extension
Replies: 10
Views: 60699

Re: Create extension

Thanks for the hint. I had some progress in getting familiar with the project. I'm trying to make some customization; so the user is able to see the created date in cms, for example by fetching jsonapi/cms . My current solution is to change the following in my extension and add date property: https:...