Albert van der Veen
Albert van der Veen
If you use a facet which contains options that have a +-sign in it, for instance 'Sport+', choosing this option will render no results. This is caused by $filters =...
The js in MediaFormEngine.js will not override FormEngine.openPopupWindow of TYPO3/CMS/Backend/ and therefore the normal filebrowser will always be shown. This is how the definition should be (no check on 'inline.',...
In FormResultCompiler this is used: `$enableMediaFilePicker = (bool)$tsConfig['options.vidi.enableMediaFilePicker'];` This should be: `$enableMediaFilePicker = (bool)$tsConfig['options.']['vidi.']['enableMediaFilePicker'];` or the condition `if ($enableMediaFilePicker)` will always be false.
In version 6.0.1 there is no ` "require": { "typo3/cms-core": "^11" } ` which causes this version to be installed in Typo3 10, when using "fab/media": "^6.0". This causes errors,...
Hi, Just spent 6 hours debugging the fact that BE users other than admin would not see any files when listing a folder in the Media module. It turns out...
Replace instances of $.isFunction(func) with typeof func === "function"
Async and defer attributes now can only be added when also adding standalone="true". This doesn't work: using standalone="true" will generate inline js. Adding defer="defer" or async="async" to inline js is...
In Femanager.min.js .click(fn) should be replaced by .on(“click”, fn), as the shorthand is deprecated in JQuery 3.
Will there be a version for Typo3 12.4?
I use a custom extension that extends eventnews with occurences of events. Was working fine with eventnews 5, news 10 and Typo3 11. After upgrading to eventnews 6, news 11...