Search found 7600 matches

by aimeos
22 Nov 2023, 12:47
Forum: Laravel package
Topic: Delivery Provider is Untriggered Functions
Replies: 1
Views: 107

Re: Delivery Provider is Untriggered Functions

At least the checkConfigBE() and getConfigBE() should be called if you select your provider in the admin backend and move to the next field so the available configuration options are queried. You can check that in the browser console (network tab) too.
by aimeos
20 Nov 2023, 17:07
Forum: Laravel package
Topic: To which function does this API goes to?
Replies: 1
Views: 102

Re: To which function does this API goes to?

This endpoint uses the JsonAdm Standard class because there's no specific implementation for "attribute/type": https://github.com/aimeos/ai-admin-jsonadm/blob/2023.10/src/Admin/JsonAdm/Standard.php#L541 But the size of the returned result set should be passed in the JS code. Which Aimeos v...
by aimeos
20 Nov 2023, 17:02
Forum: Help
Topic: [Solved] Challenges with Overriding Aimeos Product Controller
Replies: 2
Views: 136

Re: Challenges with Overriding Aimeos Product Controller

You can't create a new class with the same name because composer will choose the first one (whichever that is). Instead, you have to give your class a new name (e.g. "Myproject") and configure your new class name to be used by the factory, i.e.: admin/jqadm/product/name = Myproject See her...
by aimeos
20 Nov 2023, 16:59
Forum: Laravel package
Topic: How to access user groups from a laravel controller?
Replies: 8
Views: 7158

Re: How to access user groups from a laravel controller?

Which of the alternatives did you use?
by aimeos
17 Nov 2023, 16:11
Forum: Laravel package
Topic: How to display custom media in basket view?
Replies: 4
Views: 1610

Re: How to display custom media in basket view?

Two mistakes: 1.) The function wasn't bound to the order product item object so $this referred to the AppServiceProvider where you've added the closure. This is now fixed and you need to execute: composer req aimeos/aimeos-core:2023.10.x-dev 2.) You are missing one line in your function: $values = $...
by aimeos
17 Nov 2023, 12:20
Forum: TYPO3 extension
Topic: Images deleted during scaling
Replies: 3
Views: 232

Re: Images deleted during scaling

Shared image files in different media items are causing that issue. If you want to share files, you must assign the same media item to all products. How do you import the products?
by aimeos
17 Nov 2023, 12:15
Forum: Help
Topic: Saving Basket Issue
Replies: 1
Views: 82

Re: Saving Basket Issue

by aimeos
17 Nov 2023, 12:12
Forum: Help
Topic: How can we set the price range for threshold plugin
Replies: 2
Views: 119

Re: How can we set the price range for threshold plugin

You can add the BasketValues decorator to the delivery option with FreeShipping configured to limit it to a certain value:
https://aimeos.org/docs/latest/manual/s ... sketvalues
by aimeos
15 Nov 2023, 07:08
Forum: TYPO3 extension
Topic: Images deleted during scaling
Replies: 3
Views: 232

Re: Images deleted during scaling

Seems like you've used shared media files. Did you copy the products whose preview images have been deleted?
by aimeos
14 Nov 2023, 08:00
Forum: Help
Topic: [SOLVED] Where can I find the Customer tables on DB?
Replies: 4
Views: 403

Re: Where can I find the Customer tables on DB?

Most likely your siteid value doesn't match. The site ID (e.g. "1.") must be the one of the site code (e.g. "default") which you use in your URL (because of "{site}/..."). If you want customers to be available in all sites, you can also use an empty string as site ID va...