Overwrite aimeos_catalog-list flexform in v23
Forum rules
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Overwrite aimeos_catalog-list flexform in v23
I am trying to overwrite the flexform used for aimeos_catalog-list but my changes are overwritten by the aimeos core.
In v21 I was able to simply overwrite it in Configuration/TCA/Overrides/tt_content.php in my custom extension but in v23 these changes are overwritten with the config from aimeos-typo3/Configuration/TCA/Overrides/tt_content.php.
How can I modify the flexform in v23?
In v21 I was able to simply overwrite it in Configuration/TCA/Overrides/tt_content.php in my custom extension but in v23 these changes are overwritten with the config from aimeos-typo3/Configuration/TCA/Overrides/tt_content.php.
How can I modify the flexform in v23?
Re: Overwrite aimeos_catalog-list flexform in v23
That seems to be more a question if TYPO3 allows overwriting that file in the correct order (based on ext_emconf.php dependencies).
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, give us a star
If you like Aimeos, give us a star
Re: Overwrite aimeos_catalog-list flexform in v23
While ext_emconf.php is no longer used in composer based installations with TYPO3 v12, your reply did help me with figuring out the problem. Turns out I was only requiring aimeos/aimeos-core in my custom extensions composer.json. Adding aimeos/aimeos-typo3 fixed it.