My b2evolution Version: 1.10.x
Hi Everyone, I've scoured the forum for clues but I keep getting errors. This should be very simple but my php skills are hit and miss. I would like to use one skin but switch the sidebar content depending on the blog language or locale.
Something like this:
<?php
if( $lang == 'de-DE');
{
include ("sidebarA.php");
}
else
{
include ("sidebarB.php");
}
?>
I'll keep working on it. But if someone with better php coding skills could point me in the right direction, I'd be very grateful. Thanks in advance.
You should be able to use :
¥