Search found 208 matches

by kdim95
02 Aug 2023, 16:13
Forum: Laravel package
Topic: ElasticSearch - latin characters
Replies: 4
Views: 12329

Re: ElasticSearch - latin characters

I came up with one solution, but your feedback would also be appreciated: What do you think of my solution? Is the "fuzziness" of the search affected compared to searching for the original label? Is there any better solution than what I've come up with? Solution: I have overriden this meth...
by kdim95
01 Aug 2023, 12:15
Forum: Laravel package
Topic: ElasticSearch - latin characters
Replies: 4
Views: 12329

ElasticSearch - latin characters

Laravel framework version: 10.16.1 Aimeos Laravel version: 2023.04.* PHP Version: 8.2.8 Environment: Linux Hello, I have the ai-elastic plugin. I want to be able to search for products in cyrillic, but also to be able to find them again if the user uses latin characters to write cyrillic. For exampl...
by kdim95
15 Jul 2023, 00:24
Forum: Laravel package
Topic: Product price selection for price variants hidden?
Replies: 1
Views: 6217

Product price selection for price variants hidden?

Laravel framework version: 10.15.0 Aimeos Laravel version: ~2023.04 PHP Version: 8.2.7 Hello, I want to create selection product for vouchers, so that I can select the price of the voucher from a dropdown. I managed to get it to work with color attribute types, but the price dropdown is not displaye...
by kdim95
07 Jul 2023, 00:04
Forum: Laravel package
Topic: JsonApi - Update services not working
Replies: 1
Views: 3244

Re: JsonApi - Update services not working

This seems to be a conflict between the Autofill plugin and the JsonApi.
The JsonApi removes the service to add the other one, but AutoFill adds it back.
After that, the JsonApi adds a second delivery service to the basket.
Currently I have disabled the AutoFill only for the delivery service.
by kdim95
06 Jul 2023, 23:54
Forum: Laravel package
Topic: JsonApi - Update services not working
Replies: 1
Views: 3244

JsonApi - Update services not working

Laravel framework version: 10.13.5 Aimeos Laravel version: ~2023.04 PHP Version: 8.2.7 Environment: Linux URL: /jsonapi/basket?id=default&related=service&relatedid=delivery&_token=<token> Data: {"data":[{"id":"service","attributes":{"service.i...
by kdim95
04 Jul 2023, 13:48
Forum: Laravel package
Topic: Custom delivery provider process() not called
Replies: 3
Views: 5725

Re: Custom delivery provider process() not called

I still can't get it to create a log file from the push() method: namespace Aimeos\MShop\Service\Provider\Delivery; class MyProvider extends \Aimeos\MShop\Service\Provider\Delivery\Base implements \Aimeos\MShop\Service\Provider\Delivery\Iface { public function push( iterable $orders ) : \Aimeos\Map ...
by kdim95
04 Jul 2023, 13:12
Forum: Laravel package
Topic: CMS (Grapes JS)
Replies: 2
Views: 3875

Re: CMS (Grapes JS)

It seems to me like the file drag option (gjs-am-file-uploader class selector) has just been hidden. It doesn't seem to be supported, because they want to work with the "Media" items in Aimeos. You would have to implement the logic for uploading images through the drag feature yourself, or...
by kdim95
04 Jul 2023, 13:03
Forum: Laravel package
Topic: CMS cache
Replies: 3
Views: 4084

Re: CMS cache

Did you update the CMS page in your admin and upload a new media to replace the old media with in the editor?
Are you sure it's not browser cache, try to open the page in incognito?
by kdim95
30 Jun 2023, 14:13
Forum: Laravel package
Topic: Custom delivery provider process() not called
Replies: 3
Views: 5725

Custom delivery provider process() not called

Laravel framework version: 10.13.5 Aimeos Laravel version: ~2023.04 PHP Version: 8.2.7 Environment: Linux Hello, the process() method in my custom provider is not being called. I have this cronjob set (with my own artisan and PHP paths of course, I'm sure it's executing properly because I receive em...
by kdim95
29 Jun 2023, 15:05
Forum: Laravel package
Topic: Using same route for different controllers?
Replies: 1
Views: 4893

Using same route for different controllers?

Laravel framework version: 10.13.5 Aimeos Laravel version: ~2023.04 PHP Version: 8.2.7 Environment: Linux Hello, I want my CMS pages route and Products route to be the same. It needs to accept any URL, check if the CMS page route exists, if it doesn't exist, redirect to the Products route. That's wh...