Trying to replace content zones in typo3 -


what i'm aiming do!

i'm creating template site in typo3, , i'd rid of typo3's default content zones, , replace them own.

i.e. on page menu.

to remove left, content, border

and keep/add. header. main. right.

the problem!

i've found snippets around web, , bluntly, i'm expecting happen, isn't happening. every post seems "thank you, great success! ++", code paste isn't throwing errors, , isn't doing anything, well, @ all.

my attempt

via typo3 documentation http://typo3.org/documentation/snippets/sd/24/

i call mod.shared.colpos_list in order choose 3 sections display

t3lib_extmgm::addpagetsconfig('   mod.shared.colpos_list = 0,1,3  ');   

and edit tca in exttables.php set them specs.

$tca["tt_content"]["columns"]["colpos"]["config"]["items"] = array (   "1" => array ("header||header||||||||","1"),   "0" => array ("main||main||||||||","0"),   "3" => array ("right||right||||||||","3"),   ); 

exttables.php being called as die(); cuts page.

i've cleared cache , deleted typo3temp, logged out , in again.

but nothing happens.

my main guess, is, feature templavoila? removed felt trying out new(er) typo3 fluid templating system, , didn't feel needed gui editor.

any ideas?

well - more pages , content elements got more problems have face when using templavoila. having comma separated values in xml structures saved single database field performance killer want collect content more 1 page (uncached teaser menus or like). handling of references , "unused elements" questionable well. of course work small medium sites, concept wise clean approach looks different.

backend layouts available since typo3 4.5 , work flawlessly since represent normalized relation between elements , pages based on colpos. if need more, grid elements take principle next level, offering nested structures still based on normalized relations, make life easier when comes db cleaning , other maintenance tasks.

find introduction backend layouts here: http://www.youtube.com/watch?v=ssxfnd4tybk


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -