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
Innovative Ads After First Post (Or any post!) Details »»
Innovative Ads After First Post (Or any post!)
Version: 1.00, by TheLastSuperman (Senior Member) TheLastSuperman is offline
Developer Last Online: Oct 2023 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 4.2.x Rating:
Released: 08-24-2010 Last Update: 02-05-2014 Installs: 121
Supported Uses Plugins Auto-Templates
Translations  

Innovative Ads After First Post

By:


I decided to make this while creating another modification as I have seen this requested many times, I Google'd it finding details on what template to edit plus I searched here on vbulletin.org and only found old "modifications" which were actually just tutorials and none were actual products that did most of the work for you .

Description:

Ad after first post on very page or as some describe it, Ad after first post in a thread - This modification places two ads in a post like container below the first post on every page in a thread. Fully customizable to allow all sorts of ad codes such as Google Adsense, OpenX Ads, and various others along with the possibility for the user to design his own images and link them to the appropriate content. Users can also customize CSS or remove the DIV codes to use show only one ad or any sort of advertisement and display any form of content other than ads!

Quote:
Originally Posted by TheLastSuperman
  • Please see post #'s 6 & 7 for codes to display this after a certain post on each page not simply after the first post!
  • More information on vB4 Conditionals can be found here: https://vborg.vbsupport.ru/showthread.php?t=231525 Special thanks should go to BBR-APBT for taking the time to write that article.
Features:
  • Enable or Disable via Settings in vBulletin Options.
  • Fully Customizable.
  • Auto-template.

Required Changes:
(Manual i.e. "To Do")
  • Edit the new template postbit_legacy_ads_after_firstpost and simply add in your scripts or codes to show them which is very simple as I included commented out code to show you exactly where to place it. *This shows in Postbit AND Postbit_Legacy depending on what you have enabled.
(Optional i.e. If you need to adjust the css to make it match your style better if using a custom Fixed width etc.)
  • Edit the new template adsafterfirstpost.css and adjust the css as desired!

(Automatic)
  • Templates to add: 2 ('postbit_legacy_ads_after_firstpost','adsafterfir stpost.css')
  • Phrases to add: 3

Difficulty:
Easy, Time to install: Around 1 Minute - Installer is included simply import the product;
AdminCP > Plugins & Products > Manage Products > *Now click the [ADD/IMPORT PRODUCT] link to import from your computer (download below). Adding in your own codes and customizing if you see fit takes a few more minutes.

History:
8.24.2010: Version 1.0 Created

IMPORTANT:
In the postbit_legacy_ads_after_firstpost template please find:
Code:
<div id="innovativeadleft">
<vb:comment> Left Ad Code Below this Commented out line </vb:comment>
Left Ad Image/Code 1 needs to be placed here, no larger than 260 pixels in height.
<vb:comment> Left Ad Code Above this Commented out line </vb:comment>
</div>
<div id="innovativeadright">
<vb:comment> Right Ad Code Below this Commented out line </vb:comment>
Right Ad Image/Code 2 needs to be placed here, no larger than 260 pixels in height.
<vb:comment> Right Ad Code Above this Commented out line </vb:comment>
</div>
As you can see I have added in commented code to let you know where your custom ads codes need to be placed, very simple.

*Remember to enable the mod after installing otherwise it won't show!
AdminCP > Settings > Options > Innovative Ads After First Post and set to Yes.

*Attention- Please view the first page as the 2nd and 3rd (Added: Post #'s 6 & 7 also contain info on how to customize!) posts were reserved and contain additional information to help you customize this in various ways.

What can you expect in the next version?
  • No template edits, Ads codes will be entered into the admin control panel area where the mod is currently enabled/disabled. If you have a custom style CSS changes will still be required if you notice any position issues etc.

TheLastSuperman
http://www.innovationbyinstinct.com



Download Now

File Type: xml product-innovative_ads_after_firstpost.xml (5.0 KB, 167 views)
File Type: xml product-innovative_ads_after_firstpost-v2.xml (5.0 KB, 276 views)
File Type: xml product-innovative_ads_after_firstpost-v3.xml (5.0 KB, 173 views)
File Type: xml product-innovative_ads_after_firstpost-v4.xml (5.0 KB, 237 views)

Screenshots

File Type: png adsafterfirstpostmod.png (178.5 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
3 благодарности(ей) от:
mapleleaffans, ramesh_umk3, Sage Knight

Comments
  #22  
Old 02-27-2011, 01:41 AM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by azcs bryan View Post
First off, thank you for taking something that required a whole ton of editing, and simplifying it for us "common folk"

I edited the adsafterfirstpost.css to read:

height: 200px;


rather than 260px, because I love the location and placing, however I would like to make it shorter in display. It hasnt reflected any changes tho, and is still displaying the 260px box/container. Am I doing something wrong?

thanks again!
In there are three definitions related to the height check it out:

Code:
#innovativeadspan {
width: 100%;
height: 260px;
margin-right: auto;
margin-left: auto;
}
#innovativeadleft {
width: 45%;
height: 260px;
float: left;
margin-left: 15px;
}
#innovativeadright {
width: 45%;
height: 260px;
float: right;
margin-right: 15px;
}
The innovativeadspan is the "Container" then innovativeadleft and right are for those sides respectively. If you change the left or right height to 200 then also change the innovativeadspan as well however the span should control the overall height regardless simply tinker to see the results but the span is the master value per say .
Reply With Quote
  #23  
Old 02-28-2011, 12:20 AM
azcs bryan azcs bryan is offline
 
Join Date: Jan 2011
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheLastSuperman View Post
In there are three definitions related to the height check it out:

The innovativeadspan is the "Container" then innovativeadleft and right are for those sides respectively. If you change the left or right height to 200 then also change the innovativeadspan as well however the span should control the overall height regardless simply tinker to see the results but the span is the master value per say .
I tried and tried but to no avail, with editing the css. I was however successful when i edited the postbit_legacy_ads_after_firstpost

the section here:

Code:
	<div class="postdetails" style="height:220px;">
<div style="margin-top:10px;"></div>
Originally the height:220px was set to 320px, as well as the margin-top:10px was set to 20px. Either way, that was successful!

Thank you for this awesome addon, and I will be eagerly awaiting the next version with Admin CP editing of the ads! Attachment 127017
Reply With Quote
  #24  
Old 03-03-2011, 01:50 AM
abdicar abdicar is offline
 
Join Date: Oct 2006
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello developer, this is very important and cool mod.

I just want to ask you, why it is not compatible by default with lasts versions? Because we see mods that works with a lot of versions in the future and well looks like each new version break this mod.

Thank you for your feedback
Reply With Quote
  #25  
Old 03-05-2011, 03:44 AM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by abdicar View Post
Hello developer, this is very important and cool mod.

I just want to ask you, why it is not compatible by default with lasts versions? Because we see mods that works with a lot of versions in the future and well looks like each new version break this mod.

Thank you for your feedback
This is supposed to be default functionality, last time I checked it was still not working i.e. a bug so I added a version dependency to the code. When it's fixed this mod will no longer be required and some max out the version simply not knowing what's on the way... I hope those making modifications in regards to the editor are not as a change is in store there as well .
Reply With Quote
  #26  
Old 03-06-2011, 06:38 AM
sweetguy2004's Avatar
sweetguy2004 sweetguy2004 is offline
 
Join Date: Feb 2007
Location: uk
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice script make it more admin friendly i will wait for next version coz i dnt like to edit templates.
Reply With Quote
  #27  
Old 03-13-2011, 02:04 PM
LbR LbR is offline
 
Join Date: Nov 2009
Posts: 145
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Brilliant product man!!! thanks
Reply With Quote
  #28  
Old 03-13-2011, 11:01 PM
Teascu Dorin Teascu Dorin is offline
 
Join Date: Nov 2009
Location: Sibiu, Romania
Posts: 106
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This product is great but it seems is appearing for registered users and me as administrator also. Shouldn't be seen only by visitors /unregistered?

Thank you!
Reply With Quote
  #29  
Old 03-17-2011, 05:52 AM
flaguns flaguns is offline
 
Join Date: Sep 2010
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice!! Thanks a ton, I really like this.

I changed the height as mentioned above, and changed the margin to a 10px 10px 10px 10px instead of just the 20px top and I really think it looks great! :up:
Reply With Quote
  #30  
Old 03-20-2011, 12:36 PM
Luca_000 Luca_000 is offline
 
Join Date: Jan 2006
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hello,
if i would like to put the post after the first one of each page and after the sixth message (if present), how i can do?
thank you
Reply With Quote
  #31  
Old 03-20-2011, 02:04 PM
denman75 denman75 is offline
 
Join Date: Aug 2006
Location: Netherlands
Posts: 228
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

would be great if u can insert your own adverts ,and leave google ads out
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 10:04 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.04908 seconds
  • Memory Usage 2,358KB
  • 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
  • (3)bbcode_code
  • (4)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
  • (11)post_thanks_box
  • (3)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
  • (5)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