Search found 7600 matches
- 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.
- 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...
- 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...
- 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?
- 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 = $...
- 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?
- 17 Nov 2023, 12:15
- Forum: Help
- Topic: Saving Basket Issue
- Replies: 1
- Views: 82
Re: Saving Basket Issue
Form for saving the basket:
https://github.com/aimeos/ai-client-htm ... hp#L26-L33
JS method to handle basket submits:
https://github.com/aimeos/ai-client-htm ... js#L25-L43
https://github.com/aimeos/ai-client-htm ... hp#L26-L33
JS method to handle basket submits:
https://github.com/aimeos/ai-client-htm ... js#L25-L43
- 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
https://aimeos.org/docs/latest/manual/s ... sketvalues
- 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?
- 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...