Search found 36 matches

by akropivko
05 Sep 2023, 21:07
Forum: Laravel package
Topic: How to remove the category id from the routes and keep only the category url segment?
Replies: 3
Views: 10421

Re: How to remove the category id from the routes and keep only the category url segment?

That's tricky because... I just checked several Laravel websites from Aimeos Showcases (https://aimeos.org/showcases). I found no showcase with the character '~' in the category URL. Also, I'm 99% sure my client will ask me to remove it too. So... probably it would be a very good idea to simplify t...
by akropivko
30 Aug 2023, 18:37
Forum: Laravel package
Topic: An error on AI demopage?
Replies: 1
Views: 14726

An error on AI demopage?

Hi! It seems something strange on your AI Laravel demopage...Could you please check if it is correct - why clicking the favorites icon on the product page (see screenshot1) it redirects to the profile??? see screen 2
by akropivko
26 Aug 2023, 16:00
Forum: Help
Topic: Simple solution to improve the Aimeos documentation
Replies: 1
Views: 34160

Simple solution to improve the Aimeos documentation

Hello guys, Since the Aimeous docs sometime contains inaccuracies (maybe it's because of several versions, etc.) I'd like to suggest a simple improvement: something like "See mistake? Highlight it and press [hotkeys]". And maybe plus a field with suggestion/edited text. thanks for your work!
by akropivko
27 Oct 2021, 09:36
Forum: Help
Topic: aimeos/ai-cms-grapesjs plugin
Replies: 3
Views: 4806

Re: aimeos/ai-cms-grapesjs plugin

Hi! could you please advice a CMS plugin for 2020.10.* instead of the aimeos/ai-cms-grapesjs ?
by akropivko
20 Sep 2021, 11:45
Forum: Laravel package
Topic: Duplication of product URL segment is a problem
Replies: 2
Views: 1345

Re: Duplication of product URL segment is a problem

And when I set my custom URL using setUrl() function (for instance $item->setUrl($item->getURL() . '-' .$item->getCode())) then on the catalog detail page there is error "No value for key "detailProductItem" found" To fix this error I need just to save the product details page (/...
by akropivko
20 Sep 2021, 09:45
Forum: Laravel package
Topic: Duplication of product URL segment is a problem
Replies: 2
Views: 1345

Duplication of product URL segment is a problem

Hi! I case I have 2 or more products with the same product name then I have the same product URL segments by default - and this is a problem, since all these products have totally the same URLs. Could you please advice what is the best way to change the default method of URL segment creation? Say I'...
by akropivko
25 Jul 2021, 11:37
Forum: Laravel package
Topic: updateSync Function Route Address
Replies: 18
Views: 11324

Re: updateSync Function Route Address

aimeos wrote: 26 Jun 2021, 06:57 You can use this to generate the URL for this route:

Code: Select all

route('aimeos_shop_update')
ok, I finally did the updatePush method for my project. I can update the Aimeos documentation with a quick step-by-step example if you need. What is the best way to do this?
by akropivko
24 Jun 2021, 09:07
Forum: Laravel package
Topic: updateSync Function Route Address
Replies: 18
Views: 11324

Re: updateSync Function Route Address

aimeos wrote: 22 Jun 2021, 07:33 The updatePush() method might be more suitable as there's a route for that.
Could you please clarify what route is for the updatePush() method?
To be more clear, what URL I can use to call the updatePush() of my service decorator?
by akropivko
18 Jun 2021, 09:08
Forum: Laravel package
Topic: order status import
Replies: 3
Views: 3276

Re: order status import

Yes, you can use the already existing XML delivery service provider which implements the updateAsync method to update order status values: https://github.com/aimeos/aimeos-core/blob/master/lib/mshoplib/src/MShop/Service/Provider/Delivery/Xml.php#L134-L173 Is there any example of .xml file for order...
by akropivko
16 Jun 2021, 10:08
Forum: Laravel package
Topic: The best way to send the order data along with the order id right after the order placement
Replies: 3
Views: 2649

Re: The best way to send the order data along with the order id right after the order placement

Thanks for the reply! ...so if I have several delivery options my steps to implement this are: 1. to create a new decorator with the processBatch method implemented. 2. to add this decorator to every delivery option in my admin backend Questions: 1. Having this, the processBatch method will be execu...