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 ?
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]
Fix the problem with:
[useragent = *Trident/7.0; rv:11*]