Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
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
  #1702  
Old 11-22-2007, 03:45 AM
nanaimobar nanaimobar is offline
 
Join Date: Nov 2005
Location: Canada
Posts: 103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The Posts and Threads/views columns on the far right side of forum board are displayed with dashes in them when advertisements are placed in a thread. These should be blank as I don't use the Post/Thread/views count columns on my site for the simple reason my board isn't for community posting.

I looked for dashes in php templates for this mod and checked various vb templates trying to see where these dashes come from but, alas I just ended up with sore eyeballs.

Attached is a jpg showing the two columns with the dashes in them, just follow the red arrow.

Any suggestions as to how to get rid of these darn dashes would be appreciated.
Reply With Quote
  #1703  
Old 11-22-2007, 10:28 AM
RedTyger's Avatar
RedTyger RedTyger is offline
 
Join Date: Nov 2006
Location: UK
Posts: 1,310
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by puertoblack2003 View Post
wow reading thru the post got a headache...lol but i have one question and did not see posted here.

in my post the first advert shows but the 3 and forth, is showing page can not be found in both ie and firefox.

have any idea why its doing that.

-pb
Google does not allow more than 3 of its advertisements on a page.

Quote:
Originally Posted by goddess_dix View Post
on the 4.0 beta, i was having difficulty with the plugin tossing errors in signature and profile edits, even though i'd set it to not show ads on the profile page globally. it was just when i tried to edit a sig, etc. with this turned on. i was able to hack around it using the following code with my changes commented "dlv", using your conditional from elsewhere so it didn't even check for the autointegrate for these pages. -

Code:
//start hack to drop the error for profile edits dlv 
if (THIS_SCRIPT != 'profile' && ($_REQUEST['do'] == 'editoptions' || $_REQUEST['do'] == 'editprofile'))
{
//endstart hack to drop for profile edits dlv
	foreach($adintegrate_fields['1'] AS $adintegrate_find)
	{
		$adintegrate_replace = $global_getshared["$adintegrate_find"];
		
		// This user's custom field is empty or they're banned from sharing, use the admin's default.
		if (empty($adintegrate_replace))
		{
			$adintegrate_replace = 'adintegrate_'.$adintegrate_find;
			$adintegrate_replace = $vbulletin->options["$adintegrate_replace"];
		}

		$adintegrate_preg_find[] = "/<!-- begin ad -->(.*)#$adintegrate_find#(.*)<!-- end ad -->/siU";			
		$adintegrate_preg_replace[] = "<!-- begin ad -->$1$adintegrate_replace$2<!-- end ad -->";
	}
	//hack ending_if statment to drop adds for profile edits dlv
	}
	//endofhack to drop for profile edits dlv
Ok thanks I will look at that. Don't forget to use the bug report tool in future.

Quote:
Originally Posted by xcingix View Post
Noone?
Please see this post: https://vborg.vbsupport.ru/showpost....postcount=1700. You are not doing anything wrong.
Reply With Quote
  #1704  
Old 11-22-2007, 10:32 AM
RedTyger's Avatar
RedTyger RedTyger is offline
 
Join Date: Nov 2006
Location: UK
Posts: 1,310
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by nanaimobar View Post
The Posts and Threads/views columns on the far right side of forum board are displayed with dashes in them when advertisements are placed in a thread. These should be blank as I don't use the Post/Thread/views count columns on my site for the simple reason my board isn't for community posting.

I looked for dashes in php templates for this mod and checked various vb templates trying to see where these dashes come from but, alas I just ended up with sore eyeballs.

Attached is a jpg showing the two columns with the dashes in them, just follow the red arrow.

Any suggestions as to how to get rid of these darn dashes would be appreciated.
In the appropriate templates (i.e. threadbit_advertisement) you are looking for something like this:
Code:
	<td class="alt1Active">
		-
	</td>
Just delete what looks like that, ensuring that you remove everything from <td to </td>.
Reply With Quote
  #1705  
Old 11-22-2007, 04:25 PM
nanaimobar nanaimobar is offline
 
Join Date: Nov 2005
Location: Canada
Posts: 103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by RedTyger View Post
In the appropriate templates (i.e. threadbit_advertisement) you are looking for something like this:
Code:
	<td class="alt1Active">
		-
	</td>
Just delete what looks like that, ensuring that you remove everything from <td to </td>.
Thanks, RedTyger. Much appreciated. Removed darn dashes from <td class="alt1Active"> and from <td class="alt2Active"> in forumbit_advertisement and threadbit_advertisement.
Reply With Quote
  #1706  
Old 11-23-2007, 12:03 PM
onehost onehost is offline
 
Join Date: Jul 2006
Posts: 378
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I uploaded ad management beta 4 and imported xml, was there anything else I was supposed to do? it looks sorta weird, the dropdown looks weird with a *, which i do not see on the rest of the VB drop down menu.

Thanks for your help.
Reply With Quote
  #1707  
Old 11-23-2007, 12:59 PM
RedTyger's Avatar
RedTyger RedTyger is offline
 
Join Date: Nov 2006
Location: UK
Posts: 1,310
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sounds like you haven't uploaded the languages/vb_ad_management_english.xml file.
Reply With Quote
  #1708  
Old 11-23-2007, 02:05 PM
RedTyger's Avatar
RedTyger RedTyger is offline
 
Join Date: Nov 2006
Location: UK
Posts: 1,310
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, the next version of vBulletin will include advertisement locations by default.

http://www.vbulletin.com/forum/showthread.php?t=249460

I'll wait and see what they've done before releasing the next version, assuming it is still worth releasing.

Reply With Quote
  #1709  
Old 11-23-2007, 03:27 PM
Randall Flagg Randall Flagg is offline
 
Join Date: Oct 2007
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

I have installed your mod, and it's great ,but I have some problems with the right-left columns.

On the main forum the left column looks great, but inside an subforum it has a weird spacing between the forum and the column.Am I doing something worng? How can I remove the weird spacing ?

Attachment #1: Main forum column looks great

Attachment #2: Subforum column is not looking great.
Reply With Quote
  #1710  
Old 11-23-2007, 04:02 PM
RedTyger's Avatar
RedTyger RedTyger is offline
 
Join Date: Nov 2006
Location: UK
Posts: 1,310
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi, see BugID 10.

Edit: No, don't see that bug! That's Internet Explorer 7 isn't it. I will duly look into it.
Reply With Quote
  #1711  
Old 11-23-2007, 04:17 PM
Randall Flagg Randall Flagg is offline
 
Join Date: Oct 2007
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by RedTyger View Post
Hi, see BugID 10.

Edit: No, don't see that bug! That's Internet Explorer 7 isn't it. I will duly look into it.
Yes, IE 7
Reply With Quote
Reply


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 02:32 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.05467 seconds
  • Memory Usage 2,331KB
  • 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
  • (3)bbcode_code
  • (7)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
  • (6)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