Log in

View Full Version : Just Partial Help - Forum Blocks


KGodel
02-08-2015, 07:14 PM
Hey guys. We use a theme on my site called TF Paragon. The author has since disappeared and I have been unable to contact him. The theme is great and was designed for the suite, but there is one annoying little issue; forum blocks do not function properly. Instead of appending themselves to the side of the forum, they appear BELOW all forum listings and statistics. I was wondering if someone could take a look at the theme and see if you can figure it out. A fix on one should fix all child ones, so minimal time. I might be willing to pay depending on if anyone is kind enough to help me for free. :3

KGodel
02-14-2015, 11:24 PM
So I figured it out, but there is still 1 thing broken: if a user closes the tabs, it does not save anywhere, so when they refresh, the sidebar returns. Any hints?

greigeh
02-23-2015, 04:00 PM
This would require looking at the full coding of the skin, it seems there might be an issue with the style storing the Cookies or something like jQuery isnt operating properly.

Alternatively, if you have a rough idea about vBulletin coding - you could set up a userfield in which has options of "Hide" & "Display Sidebar", simply using coding such as:


<if condition="$bbuserinfo[fieldID] == 'Hide'">
<style>
.sidebar-CSS {
display:none;
}
</style>
<if>