I want to have two different image sizes: One for the normal browser and one for the mobile version. I thought I could use timthumb to resize the image.
Therefore I mapped in Templavoila an Image field, fixed W+H to an <img src="xx" />. Under Data processing I want to enter my Typoscript code. With this code I want to have another representation (scaled image).
10 = IMAGE
10.file.XY = 1328,768
10.file.import = uploads/tx_templavoila/
10.file.import.current = 1
10.file.import.listNum = 0
10.file.maxW = 2000
10.file.minW = 1000
10.file.maxH = 1000
10.file.minH = 700
[globalVar = TSFE:fe_user|sesData|mobileversion=1]
20 = RECORDS
20.source.current = 1
20.tables = tt_content
20.stdWrap.wrap = <img src="fileadmin/templates/php_scripts/timthumb.php?src=|&w=600" />
20.stdWrap.required = 1*
[global]
But I always get the picture from the normal version. I tried to use the session variable and I also tried to use a user function. Even if I remove this condition the output is always the same... (big picture). What I'm doing wrong?