10:13:15 <denisdroid> What is the recommended way to show a fal image preview in the Preview section? - This is the way I did it. https://gist.github.com/DenisMir/3f2c96cc47c6376f4662
10:13:39 <denisdroid> The image tag gets rendered but the path to the image is wrong
10:13:50 <xaver> i think some examples are in the libary
10:14:15 <denisdroid> xaver: Yeah I saw the example in the library. But the example contains no example for the preview section.
10:14:52 <denisdroid> The wrong path starts with: "/typo3/sysext/cms/fileadmin…"
10:15:22 <denisdroid> "typo3/sysext/cms" is wrong it has to start with /fileadmin...
10:33:25 <Guest|85492> hi bjo3rn, i allready postet my question yesterday evening, and you tried to help me.
10:33:36 <Guest|85492> on https://gist.github.com/semuc/4686b9f6ac090e967dbc you can see my fcetest.html (and some configuration files) which didn't work in my TYPO3. I always get one single input field "The Title:". You tested it in your TYPO3 and it worked fine.
10:33:44 <Guest|85492> Now i'm one step further - although it still not works ;-}
10:33:52 <Guest|85492> The field "The Title:" is defined in typo3\sysext\frontend\Configuration\TCA\tt_content.php as default pi_flexform. So i guess the configuration section of my template could not be read
10:34:00 <Guest|85492> Do i have to create/modify more then the files setup.txt, ext_localconf.php, ext_tables.php and ContentController.php as shown in https://gist.github.com/semuc/4686b9f6ac090e967dbc ?
10:43:49 <denisdroid> I have looked at this one: https://fluidtypo3.org/library/code-examples.html?tx_fluidshare_display%5Bgist%5D=5&tx_fluidshare_display%5Baction%5D=display&tx_fluidshare_display%5Bcontroller%5D=Gist&cHash=e403004449572e5ede2dd38d6d268f99
10:50:51 <denisdroid> Ok yeah. I looked at the single responsive image example.
10:52:29 <denisdroid> So to be able to use fal for a single image I have to use flux:field.inline.fal as well? (I only saw the flux:field.inline.fal in gallery examples)
11:08:32 <Guest|85492> anyone here to take care of my issue?
11:09:56 <Guest|85492> "Configuration" section of my fce templates are ignored, i always get ony the default input field, defined in TCA\tt_conten.php
11:26:02 <bjo3rn> Guest|85492 I already asked yesterday: what is the key of your provider extension?
11:29:07 <Guest|85492> hi bjo3rn, extension name is se_wee. selecting and output of fluidpages templates stored and configured in this extension wrks fine
11:38:54 <Guest|85492> renaming and replacing all occurrences of se_wee with sewee, same problem
11:40:19 <bjo3rn> ok, to recap: flux debug mode '1' doesn't show anything unusual?
11:47:32 <Guest|85492> debug mode 1, saved, cleard cache (in install tool), added new content element on page, wizard opens and lists all fces, click on one of them, BE mask with only the default input field. No debug messages
12:15:35 <Defos> Hi there, I'm struggling with a simple if statement. I'm trying this, which is not possible in fluid I think: <f:if condition="{myvar1} || {myvar2}">do it</f:if>
14:10:24 <denisdroid> Is there an example on how to use the "indexed_search" extension together with the fluidpages? (template for the result page etc.)
14:17:14 <bjo3rn> denisdroid actually there's nothing much to it besides adding the markers and make sure pages are cached?
14:32:35 <denisdroid> So you could possibly set a custom result template.
14:33:04 <mrboe> dont know - i just used it like that
14:33:10 <denisdroid> That helps me a lot thank you very much.
14:33:32 <denisdroid> Well the templateFile option could be set differently
14:34:00 <mrboe> i have a search field on the output page so that the user also hase the possibilty to make another search
14:35:50 <denisdroid> Yeah that's right. I have found the default template now and I would assume that I can overwrite the template with my own stuff. :-) I just need the search result.
15:04:06 <denisdroid> Does an ViewHelper exist that gives me the link for a certain page id? (is it https://fluidtypo3.org/viewhelpers/vhs/master/Link/TypolinkViewHelper.html ?)
16:00:17 <denisdroid> plugin.tx_indexedsearch.templateFile = EXT:xyz/Resources/Private/Templates/Extension/SearchResult.html - Does someone know why this gets ignored?
16:21:57 <denisdroid> mrboe: And the "templateFile = EXT:t3basic/Resources/Private/Plugins/SearchForm.html" doesn't get ignored in your indexed search setup?
16:22:41 <mrboe> it only works if you but the setup in the rootpage
16:22:46 <denisdroid> I have included this in my provider extensions setup.txt: plugin.tx_indexedsearch.templateFile = EXT:xyz/Resources/Private/Templates/Extension/SearchResult.html - But the default template is used all the time. :/
16:24:35 <NamelessCoder> because indexed_search is abusive and loads TS using ext_typoscript_setup.txt which you cannot override except by also using ext_typoscript_setup.txt and making sure your extension depends on indexed_search.
16:28:10 <NamelessCoder> it will always load last.
16:28:14 <denisdroid> NamelessCoder: I fixed the dd_googlesitemap problem with setting "Static template files from Typo3 extension" to "Include before all static templates if root flag is set"
16:28:38 <NamelessCoder> that's the only behaviour toggle that can affect this, but it won't work on static TS from extensions
17:03:32 <denisdroid> NamelessCoder: But what is the correct position to override the static stuff of indexed_search?