Hi,
I have this installed (as well as the VBAdManagement mod).
The sponsorship is displaying in the main category page, but not displaying on the following pages (it just says "Sponsored by" followed by a blank):
http://www.mysite.com/vbulletin/forumdisplay.php?f=31
Also, I'd like the Sponsorship to show on every page of the threads themselves after the Vbulletin navigation bar (e.g.
http://www.mysite.com/vbulletin/showthread.php?t=57).
Can someone help? I double-checked the templates and I seem to have made all the appropriate additions.
Here's the code for my forumdisplay template...looks ok no?
<if condition="$pagenav"><td align="$stylevar[right]">$pagenav</td></if>
<!-- vBSponsors -->
<if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1">
$vboptions[sponsor_global_default_text] <a href="vB.Sponsors/link.php?f=$foruminfo[forumid]" title="$foruminfo[sponsor_name]" target="_blank">
<if condition="$foruminfo[sponsor_banner_enabled] == 1 AND $vboptions[sponsor_global_enable_banners] == 1">
<if condition="!empty($foruminfo[sponsor_banner_big])">
<if condition="$vboptions[sponsor_global_enable_big_banners] == 1">
<img src="$foruminfo[sponsor_banner_big]" alt="$foruminfo[sponsor_name]" border="0" />
<else />
<img src="$foruminfo[sponsor_banner]" alt="$foruminfo[sponsor_name]" border="0" />
</if>
<else />
$foruminfo[sponsor_name]
</if>
</if></a>
</if>
<!-- / vBSponsors -->
</tr>
</table>