I'm trying to use an if conditional inside the skin file for my ipbpro arcade mode.
The problem is when I edit and reupload, I get a blank page due to the code I'm using but I'm not sure where I'm messing up.
In a regular vb template it looks like this.
Code:
<if condition="in_array($bbuserinfo['usergroupid'], array(2,6,7,35))">
<if condition="$bbuserinfo['posts'] > 4">
<a href="http://www.talkjesus.com/misc.php?do=page&template=Chat"><span><img src="/images/media-menu/chat.png" alt="Christian Live Chat" class="img-media-menu" /> Live Chat</span></a><else /><a href="http://www.talkjesus.com/forum-rules-ten-commandments/53-talk-jesus-10-commandments-rule.html"><span><img src="/images/media-menu/chat.png" alt="Christian Live Chat" class="img-media-menu" /> Live Chat: Disabled (?)</span></a></if></if>
In the arcade php file, I changed all the " to ' as I know the " does not work apparently.
It looks like this and results in a blank page
Code:
<if condition='in_array($bbuserinfo['usergroupid'], array(2,6,7,35))'>
<if condition='$bbuserinfo['posts'] > 4'>
<a href='http://www.talkjesus.com/misc.php?do=page&template=Chat'><span><img src='/images/media-menu/chat.png' alt='Christian Live Chat' class='img-media-menu' /> Live Chat</span></a>
<else /><a href='http://www.talkjesus.com/forum-rules-ten-commandments/53-talk-jesus-10-commandments-rule.html'><span><img src='/images/media-menu/chat.png' alt='Christian Live Chat' class='img-media-menu' /> Live Chat: Disabled (?)</span></a></if></if>
Any one know what I'm doing wrong?