Hopefully you guys with more coding skills than I can help me out with this one.
I'm trying to create two different member bars (the bar that says "Logged in as..." etc). Bar A to be shown when the user is viewing the main board index, and Bar B to be shown on every other page. I'm trying to play around with the member_bar template bit in the Global HTML Elements section, and I'm thinking there might be an easy way to accomplish this with HTML logic maybe?
Something along the lines of:
CODE
<if="ipb.page == './index.php'">
Show Member Bar A.
</if>
<else>
Show Member Bar B.
</else>
Show Member Bar A.
</if>
<else>
Show Member Bar B.
</else>
Thoughts anyone?
Thanks in advance for any help you guys can give; it is most appreciated.