Search found 8470 matches

by aimeos
30 Jan 2025, 20:38
Forum: Help
Topic: [SOLVED] Can't redirect the 'default' page to the main page site.com
Replies: 13
Views: 4647

Re: Can't redirect the 'default' page to the main page site.com

UPD: did I need to delete HestiaCP and try to work direct with apache? Or can adapt Hestia's config? I know that Hestia have own DNS packet named "BIND9" - can anyone answer: can I use it for my trouble? We don't know HestiaCP and the trouble you are having but we recommend a standard set...
by aimeos
30 Jan 2025, 20:21
Forum: TYPO3 extension
Topic: Price Decorator no Effect?
Replies: 3
Views: 1682

Re: Price Decorator no Effect?

Did you add the decorator in the service panel of the admin backend to the delivery/payment option that is displayed?
by aimeos
30 Jan 2025, 20:19
Forum: Help
Topic: Debug Templates
Replies: 5
Views: 2756

Re: Debug Templates

by aimeos
29 Jan 2025, 10:34
Forum: Laravel package
Topic: Basket is empty after redirect
Replies: 4
Views: 2340

Re: Basket is empty after redirect

You need to call save() to persist the basket:
https://github.com/aimeos/ai-controller ... hp#L45-L50
by aimeos
29 Jan 2025, 10:29
Forum: TYPO3 extension
Topic: Categories instead of Products? (trying to add multiple products to category)
Replies: 15
Views: 17103

Re: Categories instead of Products? (trying to add multiple products to category)

It has been fixed now. Please update the aimeos/ai-admin-jqadm package to "2023.10.x-dev"
by aimeos
29 Jan 2025, 10:26
Forum: Laravel package
Topic: Custom controllers in Laravel
Replies: 1
Views: 1172

Re: Custom controllers in Laravel

Please have a look at the interface of the basket frontend controller:
https://github.com/aimeos/ai-controller ... /Iface.php
by aimeos
28 Jan 2025, 09:57
Forum: Laravel package
Topic: Order extends cause error
Replies: 2
Views: 1431

Re: Order extends cause error

You forgot to add the necessary lines from the overwritten method:
https://github.com/aimeos/aimeos-core/b ... #L132-L145
by aimeos
28 Jan 2025, 09:54
Forum: Laravel package
Topic: Generate order number before save order
Replies: 2
Views: 1493

Re: Generate order number before save order

There's already a column named invoiceno which you can use. If you just want the order ID to be displayed differently, you can also add a macro to the boot() method in your ./app/Providers/AppServiceProvider.php file. Invoice number: \Aimeos\MShop\Order\Item\Standard::macro('invoicenumber', function...
by aimeos
27 Jan 2025, 15:21
Forum: TYPO3 extension
Topic: Categories instead of Products? (trying to add multiple products to category)
Replies: 15
Views: 17103

Re: Categories instead of Products? (trying to add multiple products to category)

The Javascript that fetches the items is here: https://github.com/aimeos/ai-admin-jqadm/blob/2023.10/js/apps/productlist.js#L370-L402 The "domain" seems to be used wrongly and nobody noticed that up to now. Can you replace it with the code below and check if it works? suggest(input, loadfc...
by aimeos
27 Jan 2025, 14:49
Forum: TYPO3 extension
Topic: How to define correct ISO-Code?
Replies: 1
Views: 1229

Re: How to define correct ISO-Code?

HTML defines a different separator than the ISO codes. To fix that change the line to:

Code: Select all

currency: attr['order.currencyid'].replace(/_/g, '-'),
We've done that in the core files too now.