I added a custom template conditional per this
Thread.
and when trying to use it with webtemplates, it's showing the actual code in the page instead of parsing the code.
I have enabled conditionals in the template.
[[is_os('windows')]]
[[//is_os('windows')]].
That is the conditional I'm trying to use.
I've tried is_browser and I know that works correctly, is there any reason the custom template conditional I made will not work with this mod?
I've even tried adding it to /adminCP/webtemplate.php;
PHP Code:
require_once('./os.php');
But of course it cannot redeclare is_os(), because it's already in functions.php
Thanks.