Ive found a bug , on my forum this mod didnt work. I looked in the source and the script tags we not closed as they should be.
In the :
collapse_info template the code is currently
Code:
<if condition="!$vbulletin->products['spoiler']['active']"><script type="text/javascript" src="clientscript/jquery_load.js" /></if>
<if condition="!$vbulletin->products['lsearch']['active']">
<script type="text/javascript" src="$vboptions[bburl]/clientscript/yui/get/get-min.js" /></if>
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/cui.css" />
It needs to be changed to this :
Code:
<if condition="!$vbulletin->products['spoiler']['active']"><script type="text/javascript" src="clientscript/jquery_load.js" ></script></if>
<if condition="!$vbulletin->products['lsearch']['active']">
<script type="text/javascript" src="$vboptions[bburl]/clientscript/yui/get/get-min.js" ></script></if>
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/cui.css" ></script>
And then it works perfectly