That's what I can't seem to figure out.. I have the following in the top of my page, before any html .. I don't get any errors, so I assume its requiring it properly?
Code:
<?PHP
chdir('./forums');
require_once('./global.php');
?>
the onclick="return toggle_collapse('auction_cats')" function is properly setting the cookies, but when you load the page .. the content box loads "expanded" regardless of what you last set it to...
Is there another file or function i'm missing? I am currently including the global.php file and the vbulletin_global.js .....
My code on my mainpage that is trying to use the function is
Code:
<div class="myaccsecond">
<a style="float: right;" href="#" onclick="return toggle_collapse('a_cats')">
<img id="collapseimg_a_cats" src="http://www.mywebsite.com/forums/images/buttons/collapse_tcat.gif" alt="Show / Hide" border="0" />
</a>Title Here</div>
<div id="collapseobj_a_cats" style="$vbcollapse[collapseobj_a_cats]">
Content Is In Here
</div>
Looking at this, I realize that I probably need to wrap this in <?PHP ?> tags somehow? Maybe?
Code:
style="$vbcollapse[collapseobj_a_cats]"