Search found 7944 matches

by aimeos
22 May 2024, 12:40
Forum: Laravel package
Topic: Error throwing exception in Plugin ProductLimit
Replies: 1
Views: 741

Re: Error throwing exception in Plugin ProductLimit

You have configured the ProductLimit plugin to only allow a quantity of "1". Please share your ProductLimit plugin configuration.
by aimeos
22 May 2024, 12:38
Forum: Laravel package
Topic: Custom order creation
Replies: 4
Views: 3165

Re: Custom order creation

Only use the order manager and its sub-managers to create the order and not the frontend controllers.
by aimeos
22 May 2024, 12:35
Forum: Laravel package
Topic: Utilizing Vue2 Libraries in the Admin
Replies: 6
Views: 7435

Re: Utilizing Vue2 Libraries in the Admin

You need to include Vuetify and run esbuild to create a JS package file which you can then include in the manifest.jsb2 of your package. See: https://github.com/aimeos/ai-admin-jqad ... ge.json#L8
by aimeos
22 May 2024, 12:32
Forum: Laravel package
Topic: Upgrade Issues
Replies: 2
Views: 1468

Re: Upgrade Issues

Check if the CSS selector is still correct as there have been changes regarding the used CSS selectors.
by aimeos
17 May 2024, 17:37
Forum: Laravel package
Topic: Custom order creation
Replies: 4
Views: 3165

Re: Custom order creation

Which Aimeos version do you use?
by aimeos
17 May 2024, 17:35
Forum: Laravel package
Topic: Get Product By Code
Replies: 1
Views: 2423

Re: Get Product By Code

Use the find() method of the manager:
https://aimeos.org/docs/latest/models/m ... #find-item
by aimeos
17 May 2024, 17:34
Forum: Laravel package
Topic: Show different prices for customers of different membership
Replies: 8
Views: 19622

Re: Show different prices for customers of different membership

You mix up two things. Either you overwrite the existing "subscription/process/begin" job controller (not recommended) or you create a new subscription processor decorator like the existing ones like you've tried to: https://github.com/aimeos/ai-controller-jobs/tree/master/src/Controller/J...
by aimeos
17 May 2024, 17:19
Forum: Laravel package
Topic: Shipping method Pick up at store OR download
Replies: 2
Views: 3659

Re: Shipping method Pick up at store OR download

The suggested configuration is wrong and doesn't exist. You have to create two delivery options, one for pickup and one for download only. Use the "Download" decorator to configure the download delivery option if all products can be downloaded and the pickup option otherwise: https://aimeo...
by aimeos
17 May 2024, 09:06
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 20
Views: 22909

Re: New added product preview image (in 720) is not shown in product details page.

You've missed the 'controller' key where it must be merged below and guess this won't work too:

Code: Select all

'previews' => array_merge(config('controller.common.media.product.previews', []), [
by aimeos
17 May 2024, 08:50
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 20
Views: 22909

Re: New added product preview image (in 720) is not shown in product details page.

Please show your merged ./config/shop.php (without the credentials).