Bruno17
Bruno17
this has nothing todo with MIGX. An not existing placeholder doesn't get parsed by the MODX-parser and will stay as unparsed tag, at the time, when the ouput-filter gets parsed....
hmm... I took your example ``` [[+feild01]] [[+feild02:isnot=``:then=` [[+feild02]] `]] ``` use it in a chunk as tpl for getImageList on a MIGX-TV, which doesn't have that field. But can't...
maybe, you have to much nested output-filters. what happens with: ``` [[[[*inheritWorkFrom:isnot=``:then=` getImageList? &tvname=`OurWork` &tpl=`tpl.workItem` &docid=`[[*inheritWorkFrom]]` `:else=` getImageList? &tvname=`OurWork` &tpl=`tpl.workItem` &docid=`[[*id]]` `]]]] ```
I still think, you are overusing conditional output-filters and that's the reason for your issues. Try to avoid them, where possible. For example this isn't a good idea: ``` [[+block_size:is=`size-1-1`:then=``]]...
see also this one: https://modx.com/blog/2012/09/14/tags-as-the-result-or-how-conditionals-are-like-mosquitoes/
this part, for example could be done absolute without conditionals: ``` [[+block_size:is=`size-1-1`:then=``]] ``` if you would use different chunks for that, like ``` [[$block_image_[[+block_size]]]] ``` the chunkname would be block_image_size-1-2...
Hi, Are you sure, you have everything else setup the same, as in a working installation? I see no reason to call getImageList uncached here and I would suggest to...
I had seen this once a long time ago with an older version of MIGX. I found a bug this time and fixed that. Never had seen this happen again,...
no, you allways have to use another fieldname for a renderchunk-column. There is no way arround at this time. The rendered value will be the value of that field in...
would you like to show your exported MIGX-configs and your xpdo-schema? I think, there should allready be a way to get what you want.