Typoscript Condition not working on IE11

Arun Chandran

I want to hide typo3 felogin permalogin option in IE 11 only. For that I've added this code;

[browser = msie] && [version >= 11]

plugin.tx_felogin_pi1.showPermaLogin = 0

[global]

But this is not working anymore. I am using Typo3 version 4.7.17.

Also how to add a css hack for IE11 ?

Is there anyway to identify IE11 navigator useragent?

Does anybody knows the solution ?

derhansen

It seems your condition has an error. According to the manual the condition should look like shown below:

[browser = msie] && [version = >10]

plugin.tx_felogin_pi1.showPermaLogin = 0

[global]

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related