The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vB.Sponsors - Forum and Category Sponsorship Ads with Statistics Details »» | |||||||||||||||||||||||||||
vB.Sponsors - Forum and Category Sponsorship Ads with Statistics
Developer Last Online: Jun 2016
vB.Sponsors Forum and Category Sponsorship Ads with Statistics Add sponsor's ads or Google AdSense to forums & categories INTRO: This extension will allow you to add sponsors to you forums and categories or use Google AdSense. You can also track the hits to each sponsor by date as well. See below for more features and demo sites. For vBulletin 3.5.x, please see https://vborg.vbsupport.ru/showthread.php?t=103327 For vBulletin 3.7.x, please see https://vborg.vbsupport.ru/showthread.php?t=183335 FEATURES: -Enable sponsorship on forums and categories -Ability to use Google AdSense code -Use a banner or a text link -Supports large banners for the top of the sponsored forum and small banners for the forum listing -Tracks hits for each sponsor -Statistics viewable inside Admin CP -Ability to alter the "Forum sponsored by:" text -Easy to use and install INSTALLATION: Documentation is located here. I've found it's easier to maintain an online version rather than files included in the download. THANKS: ...to vBulletin.org and its members. ...to the people who have installed this mod, suggested improvements and found bugs. FEEDBACK: Feedback Forums: http://www.DigitalDeviation.com/forums/ Feedback is always welcomed! Good or bad. Post all feedback and feature requests in this thread or in the forums above. Trust me, I'll be reading it even if I don't respond to every post. SUPPORT: Support Forums: http://www.DigitalDeviation.com/forums/ Should you need any assistance with this, you can reach me via the link above or by posting in this thread. In either case, please post as much detail as possible with any code or screenshots pertaining to the issue. MySQL, PHP and web server software versions are helpful. You can obtain these from the Admin CP in vBulletin. DONATE: If you like this product, a donation would be appreciated. But of course its not required. VERSION HISTORY: 2.0.6 - BugFix -Changed maxversion attribute to enable vBulletin 3.7 installs 2.0.5 - Feature Add / BugFix -Added version checking -Added support for Google Adsense (template code has been updated) -Fixed the table layout in the AdminCP -Options are now controlled via vBulletin options 2.0.0 - Initial Release DEMO SITES: If you'd like your forum added here, PM me. Sites listed at http://www.digitaldeviation.com/proj...referencesites ---FEATURE REQUEST LIST--- -Integration: phpAdsNew integration -Reporting: Sponsors able to view statistics from User CP -Reporting: Export reports in PDF (or other) format -Rights: Ability to hide sponsors based on a user's group -Option: Rotating banner support -Option: Multiple sponsors per forum/category -Option: Remove the branding copyright -Option: Ability to not show sponsor's banner in the main forum listing, but show when the forum is displayed. -Option: Display ads in individual threads -Option: Email the sponsor daily/weekly/monthly hit statistics ---KNOWN BUGS--- -NONE Don't forget to click the install link below if you use it. Supporters / CoAuthors Show Your Support
|
Comments |
#92
|
|||
|
|||
Had to alter line 49 to
eval(exec_header_redirect($vbulletin->url)); as I was getting a Quote:
|
#93
|
|||
|
|||
I installed, it worked fine, looks promising
But i unistall it, because it only take a picture and not a html code (i need it for my ad-banners) |
#94
|
|||
|
|||
This is a great mod, thanks for doing it.
However, I, sucking at PHP and the likes, am having a problem. Whether I use just a text link or a banner image, whenever I click it I am just directed towards www.mysite.com/forums/vB.Sponsors/link.php which is a blank page. Why am I not being directed to to the link that I put as the sponsor's? Thanks in advance! |
#95
|
|||
|
|||
I can't get the large banner to show up. Only the small one. Can someone point me in the right direction - and post it here on this thread for anyone else having this problem in the future? Thanks!
|
#96
|
|||
|
|||
Thanks for the mod
Is it possible to use .swf files? Any idea on if/when phpAdsNew integration will be available? |
#97
|
||||
|
||||
im trying to delete an ad.... it does nothing... i checked the permissions... they are fine... i went to the options... no problem there... i went to see if i could delete it from the options.. its not showing up there... hmmm
|
#98
|
|||
|
|||
Have you gone into Forums & Moderator - Forum Permissions - The Forum you want to delete the ad from and select "No" for "Enable Sponsor" then click on Save
|
#99
|
|||
|
|||
I have replaced the Forumdisplay code, as below
Code:
<!-- vBSponsors --> <center> <if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1"> $vboptions[sponsor_global_default_text] <br/> <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> </center> <!-- / vBSponsors --> Code:
<!-- vBSponsors --> <if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1"> <table class="tborder" cellpadding="1" cellspacing="1" border="0" align="center"> <tr> <td class="tcat" align="center"><span class="normal"><font size="1"> <span class="smallfont"> $vboptions[sponsor_global_default_text] </span> </font> </span></td> </tr> <tr> <td class="alt2" align="center"><span class="normal"><font size="1"> <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> </span></td> </tr> </table> </if> <!-- / vBSponsors --> Can anyone tell me what I am doing wrong and how to fix this? Thanks |
#100
|
|||
|
|||
I tired that code and still can't get the banner to show up anywhere. I'm wondering if I have a problem because of my forum layout. See below:
-- Suspension & Brakes (not a forum) ---- Shocks & Springs ---- Stock & Aftermarket Brakes ---- Lowering Kits ---- Stabilizers & Traction Bars The client wants to sponsor the suspension & brakes forums and have the small logo beside that on the forum list but we want the large banner to show at the top of all the subforums. Is that possible? If so, how? THANKS! |
#101
|
|||
|
|||
Can anyone help me with my problem? The sponsor only links to www.mysite.com/forums/vB.Sponsors/link.php which is a blank page. Why isn't it forwarding to the actual sponsor link?
Please help me out! Thanks! |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|