Search found 8470 matches
- 30 Jan 2025, 20:38
- Forum: Help
- Topic: [SOLVED] Can't redirect the 'default' page to the main page site.com
- Replies: 13
- Views: 4653
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...
- 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?
- 30 Jan 2025, 20:19
- Forum: Help
- Topic: Debug Templates
- Replies: 5
- Views: 2756
Re: Debug Templates
Did you set displayErrors=1 ?
https://docs.typo3.org/m/typo3/referenc ... playerrors
https://docs.typo3.org/m/typo3/referenc ... playerrors
- 29 Jan 2025, 10:34
- Forum: Laravel package
- Topic: Basket is empty after redirect
- Replies: 4
- Views: 2343
Re: Basket is empty after redirect
You need to call save() to persist the basket:
https://github.com/aimeos/ai-controller ... hp#L45-L50
https://github.com/aimeos/ai-controller ... hp#L45-L50
- 29 Jan 2025, 10:29
- Forum: TYPO3 extension
- Topic: Categories instead of Products? (trying to add multiple products to category)
- Replies: 15
- Views: 17113
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"
- 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
https://github.com/aimeos/ai-controller ... /Iface.php
- 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
https://github.com/aimeos/aimeos-core/b ... #L132-L145
- 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...
- 27 Jan 2025, 15:21
- Forum: TYPO3 extension
- Topic: Categories instead of Products? (trying to add multiple products to category)
- Replies: 15
- Views: 17113
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...
- 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:
We've done that in the core files too now.
Code: Select all
currency: attr['order.currencyid'].replace(/_/g, '-'),