Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
vB Ad Management 4 Details »»
vB Ad Management 4
Version: 5.00, by RedTyger RedTyger is offline
Developer Last Online: Nov 2022 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.8 Rating:
Released: 11-08-2006 Last Update: 12-12-2007 Installs: 1791
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files  
No support by the author.


What does it do?

Features include global settings, advertisements allowing template conditionals, ad sharing and ad revenue sharing, timed advertisements, preset popular ad locations and functions such as sponsors, additional custom ad locations, random and static advertisements and its all very easy to use. You can use it for ordinary ads like adsense, banner rotations, or any content at all as well as using it to manage ads outside your forum too.

You can read in more detail about these and other features in the manual, which also contains some helpful notes and instructions, as well as the installation and upgrade instructions



If you are using autoinsertion and were using vB Ad Management before version 4.00, you will need to remove your old template edits or advertisements will appear multiple times. Just reverse the old instructions below.

Quote:
* Find <!-- post $post[postid] popup menu --> and paste $postbit_advertisement above it in your postbit & postbit_legacy templates.
* Paste $forumbit_advertisement at the bottom of your forumhome_forumbit_level1_post and forumhome_forumbit_level2_post templates.
* Paste $threadbit_advertisement at the bottom of your threadbit template.
* Paste $footer_advertisement at the top of your footer template.
* Find $spacer_close in your footer template and below it paste $rightcolumn_advertisement.
* Find &nbsp; in your header template and replace it with $header_advertisement.
* Find $spacer_open in your header template and below it paste $leftcolumn_advertisement.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2582  
Old 06-19-2008, 12:09 AM
Videx's Avatar
Videx Videx is offline
 
Join Date: Feb 2007
Posts: 3,085
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Vinyljunky View Post
Thats a different Mod and coder
True. Sort of. However, it works in 3.7, unlike this mod.
Reply With Quote
  #2583  
Old 06-19-2008, 12:41 AM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I know it's in here somewhere - can't remember where.

How do I change the label "Sponsored links" to "Advertisement"?

Added:

Found it - needed to edit phrases.
Reply With Quote
  #2584  
Old 06-19-2008, 02:28 PM
hossenpheffer hossenpheffer is offline
 
Join Date: Jun 2007
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The issue below has been resolved: By reducing the advertisement_sponsors template to the following, it removed the collapsible icon along with the onclick function, but leaving the Sponsored Links title along with the ad images. After all, if viewers could collapse the advertisements, what good are they? Hope this helps somebody. . . Here's my current template code which works fine in Firefox and IE without scripting errors:

<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="$vboptions[adintegrate_sponsors_rows]">
$vbphrase[adintegrate_sponsored_links]
</td>
</tr>
<tbody id="collapseobj_sponsors" style="$vbcollapse[collapseobj_sponsors]">
<tr>
$sponsors_adcode
</tr>
</tbody>
</table>
<br />

------------------------------
Disregard this issue!

I'm currently running this in 3.7.1 PL2 with "automatic settings" enabled. Most everything is working just fine, however when checking appearance in IE with script debugging turned on, I keep getting an error stemming from the advertisement_sponsors template. According the the script debugger, the illegal character is in the following code. With limited skill in coding, I've tried removing or changing many of the items without success. Any ideas of the issue? Here's a cut/paste from the script source:

<tr>
<td class="tcat" colspan="3">
<a style="float:right" href="#top" onclick="return toggle_collapse(\'sponsors\')"><img id="collapseimg_sponsors" src="images/buttons/collapse_tcat.gif" alt="" border="0" /></a>
The WLF Hotlist Forum is proud to be supported by the following sponsors.
</td>
</tr>

Thanks for any help!
Reply With Quote
  #2585  
Old 06-19-2008, 04:55 PM
Tapage Tapage is offline
 
Join Date: Nov 2007
Location: Panam?
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AFemaleProdigy View Post
I was right there with you yesterday! I have installed this several times in the past and always just refered back here for instructions (I have a horrible memory). Well of course I come here and couldn't find it. It took me a while, but I got it worked out. So here you go:

1. Upload all of the files that are in the "uploads" folder. Be sure to maintain the folder heirarchy.

2. Go to your vB admincp, then "Plugins & Products" in the left hand menu, select "Manage Products". You will see an "Add/Import Product" link, click it.

3. Use the "Browse" button to locate the file called "vb_ad_management.xml". It is in the "vb_ad_management_402" folder. Check "Allow Overwrite" to "Yes". Then click "Import". The system will then import the product and let you know when it's done.

4. Once that is done. Do step #3 again except you will import a different file. It is called "vb_ad_management_english.xml" and is in the "languages" folder.

5. If you refresh your admincp, you should now see a new menu option on the left hand side called "vB Ad Management". That is where you will set everything up. It's pretty straight forward from that point on.

Good luck!
Thanks to your instructions I where able to install it .. let's see how it goes now ..
Reply With Quote
  #2586  
Old 06-24-2008, 10:58 AM
Antonio Pereira Antonio Pereira is offline
 
Join Date: Sep 2007
Posts: 104
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by hossenpheffer View Post
The issue below has been resolved: By reducing the advertisement_sponsors template to the following, it removed the collapsible icon along with the onclick function, but leaving the Sponsored Links title along with the ad images. After all, if viewers could collapse the advertisements, what good are they? Hope this helps somebody. . . Here's my current template code which works fine in Firefox and IE without scripting errors:

<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="$vboptions[adintegrate_sponsors_rows]">
$vbphrase[adintegrate_sponsored_links]
</td>
</tr>
<tbody id="collapseobj_sponsors" style="$vbcollapse[collapseobj_sponsors]">
<tr>
$sponsors_adcode
</tr>
</tbody>
</table>
<br />

------------------------------
Disregard this issue!

I'm currently running this in 3.7.1 PL2 with "automatic settings" enabled. Most everything is working just fine, however when checking appearance in IE with script debugging turned on, I keep getting an error stemming from the advertisement_sponsors template. According the the script debugger, the illegal character is in the following code. With limited skill in coding, I've tried removing or changing many of the items without success. Any ideas of the issue? Here's a cut/paste from the script source:

<tr>
<td class="tcat" colspan="3">
<a style="float:right" href="#top" onclick="return toggle_collapse(\'sponsors\')"><img id="collapseimg_sponsors" src="images/buttons/collapse_tcat.gif" alt="" border="0" /></a>
The WLF Hotlist Forum is proud to be supported by the following sponsors.
</td>
</tr>

Thanks for any help!
At some time with this problem and i use your temporary solution to.

No one have any idea ?

This works ok in 3.7.1 PL2:up:
Reply With Quote
  #2587  
Old 06-28-2008, 06:55 AM
lee246 lee246 is offline
 
Join Date: Sep 2006
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lee246 View Post
Can't seem to find the answer for this. What template do I edit to change the 'remove advertisements' link from 'register.php' to whatever I want?
Thanks in advance.

Apart from that problem it all works great in 3.7.
Can anyone help me with this please?
Reply With Quote
  #2588  
Old 06-28-2008, 07:26 AM
principino1984 principino1984 is offline
 
Join Date: Jul 2006
Location: Italy
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

workin good on vb 3.7.2
Reply With Quote
  #2589  
Old 06-28-2008, 07:29 AM
theparentpack theparentpack is offline
 
Join Date: Dec 2007
Posts: 139
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The links to the manual, installation/upgrade instructions, and FAQ are not working.
Reply With Quote
  #2590  
Old 06-28-2008, 09:27 PM
ETDC ETDC is offline
 
Join Date: Aug 2007
Location: United Kingdom
Posts: 354
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good to hear this works in 3.7.2 I'm assuming this is the best solution for multi-location ad placement? Does it support tracking i.e. phpAdsNew?

Anyone have any working examples I could see?

RedTyger - before I install, can you re-link to the manual and the installation and upgrade instructions? Cheers.
Reply With Quote
  #2591  
Old 06-30-2008, 09:09 AM
tommykjensen tommykjensen is offline
 
Join Date: Nov 2005
Posts: 72
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ETDC View Post
Good to hear this works in 3.7.2 I'm assuming this is the best solution for multi-location ad placement? Does it support tracking i.e. phpAdsNew?

Anyone have any working examples I could see?

RedTyger - before I install, can you re-link to the manual and the installation and upgrade instructions? Cheers.
RedTyger has not been online since december 2007 so I would not count on him seeing your message.
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:54 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.19150 seconds
  • Memory Usage 2,322KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete