findingpeace
02-17-2013, 03:47 PM
Hi everyone,
I'm looking for a simple template edit to make the sidebar appear on the left side for only ONE of my styles. The rest all use sidebar on the right.
So the "Sidebar Position" option in ACP won't work, because that changes it for all styles.
Thank you very much!
Just wanted to update in case anyone else ever searches for this. I solved it with a plugin for hook forumhome_start
if (in_array(STYLEID, array(5)))
$vbulletin->options['sidebarposition'] = 'left';
5 being the styleID to make left.
Thanks :)
I'm looking for a simple template edit to make the sidebar appear on the left side for only ONE of my styles. The rest all use sidebar on the right.
So the "Sidebar Position" option in ACP won't work, because that changes it for all styles.
Thank you very much!
Just wanted to update in case anyone else ever searches for this. I solved it with a plugin for hook forumhome_start
if (in_array(STYLEID, array(5)))
$vbulletin->options['sidebarposition'] = 'left';
5 being the styleID to make left.
Thanks :)