Quote:
Originally Posted by vbboarder
Thanks for the update Andrew. Hopefully, we can figure out the exact code that's causing the problems for those 2 plugins.
Were you testing JWPlayer with Flash 10? Someone earlier mentioned that may be an issue.... probably not, but don't know (BTW, I'm using Flash 10).
|
Both 9 and 10 seem ok for me.
The cat_desc_popup bug requires a small template edit (links_catbit) - change:
Code:
<td align="$stylevar[left]" valign="middle" id="catfull$catid">
<span class="smallfont">
<if condition="$catnew">
<strong><a href="$catseo">$catname</a></strong>
<else />
<a href="$catseo">$catname</a>
</if>
</span>
<if condition="$links_defaults[cat_desc_popup] and $cattext">
<script type="text/javascript"> vbmenu_register("catfull$catid"); </script>
</if>
</td>
to
Code:
<td align="$stylevar[left]" valign="middle">
<if condition="$links_defaults[cat_desc_popup] and $cattext">
<div id="catfull$catid" style="float:$stylevar[left]"><script type="text/javascript"> vbmenu_register("catfull$catid"); </script></div>
</if>
<span class="smallfont">
<if condition="$catnew">
<strong><a href="$catseo">$catname</a></strong>
<else />
<a href="$catseo">$catname</a>
</if>
</span>
</td>