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

Reply
 
Thread Tools
Digital Point Ad Positioning Details »»
Digital Point Ad Positioning
Version: 1.00a, by digitalpoint digitalpoint is offline
Developer Last Online: May 2016 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 4.x.x Rating:
Released: 11-26-2010 Last Update: 11-27-2010 Installs: 272
Uses Plugins
 
No support by the author.

About
This allows you to insert an ad into a random location within the post currently being viewed and/or insert an ad after the currently viewed post.

I made this a couple years ago for internal use and decided to release it because a few people have been requesting it.

Installation
  • Install the product-dp_positionads.xml product under AdminCP -> Plugins & Products -> Manage Products -> Add/Import Product
  • Go to AdminCP -> Settings -> Options -> Digital Point Position Ads for all your settings/options.

Notes
  • You can control which usergroups see ads.
  • You can control which forums the ads are inserted for.
  • This addon works just fine with vBulletin 3 as well as vBulletin 4.
  • The ads are inserted relative to the currently viewed post, not necessarily the first/last, etc. post in a thread.
  • Requires no template edits.
  • Our ad revenue more than doubled when we implemented this (and we opted to only use it for non-registered members).

Download Now

File Type: xml product-dp_positionads.xml (7.3 KB, 1771 views)

Show Your Support

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

Comments
  #42  
Old 12-02-2010, 09:34 PM
digitalpoint's Avatar
digitalpoint digitalpoint is offline
 
Join Date: Mar 2004
Location: San Diego, California
Posts: 502
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It shouldn't be hiding anything existing you have... are you sure you aren't trying to display more than 3 AdSense ads per page? Google doesn't allow that and will just block anything beyond the 3rd ad on the page.

1. Yeah... still thinking of a good way to rework it.

2. Too many AdSense ads cause the issue of blank ads (anything more than 3 ad units per page), so not sure how good it really would be to insert ads into more than 1 post. As it is, the system will insert 2 ads (into current and after current). Which means you only have 1 more AdSense ad you can have on the whole page.
Reply With Quote
  #43  
Old 12-07-2010, 10:40 AM
marshal_ramdev marshal_ramdev is offline
 
Join Date: Mar 2009
Location: Ludhiana
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thsnx ...
Reply With Quote
  #44  
Old 12-10-2010, 03:28 PM
kamrandahir kamrandahir is offline
 
Join Date: Jul 2008
Location: EveryWhere
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

cooooool
Reply With Quote
  #45  
Old 01-01-2011, 01:06 PM
BadgerDog BadgerDog is offline
 
Join Date: Oct 2006
Location: Toronto
Posts: 1,789
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just had a mobile skin style user indicate that he has ads appearing in the middle of posts etc.

When I installed this, I didn't realize (my bad) that it would also imbed my adsense code ads into posts for users on mobile devices, which screws up the display as they overflow outside the skin.

I think the fix for me is simple ...

Can you provide me with the IF statement in vBulletin jargon that I can put in front of my adsense code so it DOES NOT execute if the style equals the value of my mobile skin?

In other words ..

===================
If style not equal to "x" then skip to end and do not execute adsense code display ...

adsense code

end
=============

Thanks ... and Happy New Year ...

Regards,
Doug
Reply With Quote
  #46  
Old 02-03-2011, 03:42 AM
Taurus1's Avatar
Taurus1 Taurus1 is offline
 
Join Date: Dec 2009
Posts: 648
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BadgerDog View Post
Just had a mobile skin style user indicate that he has ads appearing in the middle of posts etc.

When I installed this, I didn't realize (my bad) that it would also imbed my adsense code ads into posts for users on mobile devices, which screws up the display as they overflow outside the skin.

I think the fix for me is simple ...

Can you provide me with the IF statement in vBulletin jargon that I can put in front of my adsense code so it DOES NOT execute if the style equals the value of my mobile skin?

In other words ..

===================
If style not equal to "x" then skip to end and do not execute adsense code display ...

adsense code

end
=============

Thanks ... and Happy New Year ...

Regards,
Doug
I have exactly the same problem. Did you ever find the solution to this Doug?
Reply With Quote
  #47  
Old 02-03-2011, 10:34 AM
BadgerDog BadgerDog is offline
 
Join Date: Oct 2006
Location: Toronto
Posts: 1,789
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Taurus1 View Post
I have exactly the same problem. Did you ever find the solution to this Doug?
Yup ..


There is a workaround to by-pass this mod's ad code with Dartho's Lightweight Style.

In the plug-in titled Insert Inside & After Current Post bracket it with the following:

Quote:
Code:
if (STYLEID!=15){

Insert Inside & After Current Post code goes in here

}
Note: 15 is style number for my site's Dartho Lightweight Style, so yours may be different. Whatever it is, plug your style number in-place of my number 15 for your own site.
Now the ads won't display and mess up Dartho's Lightweight Style.

Regards,
Doug
Reply With Quote
  #48  
Old 02-03-2011, 11:26 AM
Taurus1's Avatar
Taurus1 Taurus1 is offline
 
Join Date: Dec 2009
Posts: 648
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BadgerDog View Post
Yup ..


There is a workaround to by-pass this mod's ad code with Dartho's Lightweight Style.

In the plug-in titled Insert Inside & After Current Post bracket it with the following:



Now the ads won't display and mess up Dartho's Lightweight Style.

Regards,
Doug
Awesome mate! Thank you so much!!
Reply With Quote
  #49  
Old 02-06-2011, 05:02 PM
ukDesign ukDesign is offline
 
Join Date: Jan 2005
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is this option available for use http://advertising.digitalpoint.com/publisher.php ?
Reply With Quote
  #50  
Old 02-06-2011, 07:30 PM
digitalpoint's Avatar
digitalpoint digitalpoint is offline
 
Join Date: Mar 2004
Location: San Diego, California
Posts: 502
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ukDesign View Post
Is this option available for use http://advertising.digitalpoint.com/publisher.php ?
It's a different thing, but yeah... you can use them together. You can use the Digital Point Ad Positioning plug-in to deliver ads from the Digital Point Ads platform just fine.

Digital Point Ads Positioning is just that... it's a way you can position ads inside/around the post the user is reading.

Digital Point Ads is a full-blown ad selling system that allows you to sell ads directly to users (they can bid on ad space)... you can sell banner ads, inline keyword ads, email ads, text link ads, etc.
Reply With Quote
  #51  
Old 02-06-2011, 08:15 PM
ukDesign ukDesign is offline
 
Join Date: Jan 2005
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I like the look of the ad selling system, how would one go about getting this if it is available?
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 12:33 AM.


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.10515 seconds
  • Memory Usage 2,351KB
  • Queries Executed 26 (?)
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
  • (1)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (13)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete