Search found 7606 matches
- 08 Dec 2023, 09:09
- Forum: Help
- Topic: New subpart for catalog filter
- Replies: 1
- Views: 36
Re: New subpart for catalog filter
Please note that 2023.07 isn't supported any more and you must update to 2023.10 LTS. Add a new class and an appropriate template in your own extension using the same directory and naming structure. Afterwards, configure your new sub-part to be used by: https://aimeos.org/docs/2023.x/config/client-h...
- 08 Dec 2023, 09:06
- Forum: TYPO3 extension
- Topic: Overwriting the email templates?
- Replies: 3
- Views: 88
Re: Overwriting the email templates?
But interestingly, it does work currently even if the "second" <ext> part is not "my_shop" (my exts name), but "aimeos" (I tried that thinking, maybe it needs the name of the typo3 extension that it is overwriting, it was "my_shop" initially). The name of the...
- 08 Dec 2023, 09:03
- Forum: Help
- Topic: Unit tests
- Replies: 1
- Views: 27
Re: Unit tests
There's a small article about the build system incl. test target: https://aimeos.org/docs/latest/developer/phing/ If you want to test your extension: 1.) check out aimeos/aimeos-core 2.) adapt the ./config/resource.php (copy from .dist file) 3.) run "composer up" 4.) place your extension i...
- 08 Dec 2023, 08:52
- Forum: Help
- Topic: New column via migration
- Replies: 1
- Views: 24
- 07 Dec 2023, 12:37
- Forum: Laravel package
- Topic: Add a new delivery provider
- Replies: 2
- Views: 60
Re: Add a new delivery provider
There was an issue in the manifest.php file of generated extensions because the "include" key was missing. If you add these lines, your delivery provider will be found:
https://github.com/aimeos/aimeos-core/b ... hp#L27-L29
https://github.com/aimeos/aimeos-core/b ... hp#L27-L29
- 06 Dec 2023, 12:44
- Forum: TYPO3 extension
- Topic: Overwriting the email templates?
- Replies: 3
- Views: 88
Re: Overwriting the email templates?
I have a extension in typo3conf/ext/my_shop/ where, aside from the TYPO3 stuff, there is a typo3conf/ext/my_shop/Resources/Private/Extensions/aimeos/ directory which contains the stuff that a "aimeos" extension (not the aimeos TYPO3 extension) has. Config, Setup, etc and a Template direct...
- 05 Dec 2023, 09:59
- Forum: TYPO3 extension
- Topic: Enable B2B Mode
- Replies: 1
- Views: 58
Re: Enable B2B Mode
Use this setting for net prices in the mshop.php configuration file of your own Aimeos extension:
Code: Select all
return [
'price' => [
'taxflag' => false
]
];
- 04 Dec 2023, 08:50
- Forum: Laravel package
- Topic: Google Search Console
- Replies: 1
- Views: 72
Re: Google Search Console
Google lists that issues for the list views, which are not really relevant because the catalog detail view contains most of the missing pieces (at least the product parts, the merchant details are not stored in machine readable form in the Aimeos database).
- 02 Dec 2023, 14:14
- Forum: Laravel package
- Topic: Can't Overide template
- Replies: 1
- Views: 56
Re: Can't Overide template
The path to the file must be:
Code: Select all
packages/my-extension/templates/client/html/catalog/home/body.php
- 01 Dec 2023, 12:20
- Forum: TYPO3 extension
- Topic: Backend order overview - missing orderid
- Replies: 1
- Views: 86
Re: Backend order overview - missing orderid
The "relatedid" column must be set in the order detail panel, otherwise it's empty.
Don't mess up with the order ID, which is a different column in front of the list view.
Don't mess up with the order ID, which is a different column in front of the list view.