typo3 - With TypoScript, how to modify a global setting per content element -


the background: using ext:a21glossary, disable it's replacing of types of content elements. actually, not ctypes, depending on selected via header_layout.

now question more general: possible access general setting per content element independently?

that's basic, often-used way use header_layout wrap content elements:

tt_content.text.stdwrap.outerwrap.cobject=case tt_content.text.stdwrap.outerwrap.cobject{     key.field = header_layout     default=text     default.value=<section class="clearfix" id="c{field:uid}">|</section>     default.insertdata = 1     4=text     4.value=<section class="clearfix lit-container" id="c{field:uid}">|</section>     4.insertdata = 1 }    

so daring, tried (config.tx_a21glossary.noglossary=1 being desired setting ce):

config.tx_a21glossary.noglossary.cobject = case config.tx_a21glossary.noglossary.cobject {     key.field = header_layout     default=text     default.value= 0     4 = text     4.value = 1 } 

of course, wouldn't work.

before further: approach (modify global setting per ce) possible @ all?


Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -