![]() |
Digital Point Ad Positioning
1 Attachment(s)
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
Notes
|
Great mod!
|
im on 4.7 and trying to use clicksor...doesnt seem to work? but also i just signed up with clicksor/..any tips?
|
nevermind it works..forgot to click yes...hey man
thanks for this... |
how can i hide this from users Advertising positioning by Digital Point?
|
Quote:
|
maybe in next version people can decide to shoow this or not :-) i m uninstalling this and waiting for next update :-)
|
Great mod. Tagged and marked as installed.
|
Wow. Thanks Shawn. I was looking to have this for ages.
|
Thanks for this. Works great!
|
sorry but i cant exactly that does it does
|
Uninstalled. Just noted that it introduced a sitewide link pointing to your forum. Not really worth the link. You should actually mention this in your first post.
|
I have some issues with this mod. I only shows the ad after the first post?
Perhaps a vbseo setting kills this function? |
Quote:
Quote:
|
Quote:
Quote:
|
Works fine with vbSEO (and vB 3.8.6). You just have to wait a couple of minutes (approx. 15-20 mins.) until the ads show up.
Thanks Shawn, installed! |
Digi,
Would be nice if you added banner rotation... lets say I want to rotate 10-20 banners rather then just showing the same old banner over and over... is this possible? Thanks |
Quote:
|
Quote:
|
Quote:
|
Well, you have the same issue :)
The ads are only shown after/in the first post. But this mod should show the ads at the active post you are watching. For example if you want to view the latest post in a thread the ads are after and in the latest post and not in the first post of the thread. |
Yeah, if your setup doesn't use the p= parameter, there's no way for the script to know which post you are looking at. Since the #post12345 isn't seen on the server-side, so...
|
Good stuff Shawn :)
|
Installed on 4.04 with thanks ... :)
However, I don't see an ad show up after the post being viewed after we've set up the mod? :confused: When you set the group that it DOES NOT display for, is this ONLY the Primary Group? In other words if a member belongs to secondary groups as well, will the mod only check the Primary Group to decide whether to display an ad or not? Thanks ... Regards, Badger Edit: Did some testing and discovered that it reads all user groups, including secondary ones, which causes a "logic" conflict when trying to exclude certain groups for us. It would work for us if if it only read the Primary Group as a means test for DO NOT DISPLAY ads. |
It's using the normal is_member_of() function built into vBulletin which does factor in secondary groups... But I'm not sure how that would cause conflicts... if someone is a member of group A, and then a secondary member of group B, and you wanted to hide ads from group B, you wouldn't want to hide ads from that member?
|
Quote:
I think it's the NOT a member of logic which is exclusive as opposed to an INCLUDE logic that causes our problems. We only want ads to display for Primary Usergroup ID's 1,2,3,4,6,13: Currently we use code like this for our ads and it works fine: Quote:
Thanks for your help ... :) Regards, Badger |
Very good mod! Just installed on vB 4.1.
I agree with you BadgerDog about the logic. "Show if member of" is easier to understand than "hide (not show) if is not member of", though result is identical, I guess. You can edit the xml file to do that. Find this line (n?31): Code:
if ($vbulletin->options['dppa_insidepost'] && !is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options['dppa_insidepost_hidegroups'])) && Code:
if ($vbulletin->options['dppa_insidepost'] && is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options['dppa_insidepost_hidegroups'])) && I wish this mod could accept differents ads according to forum ids. |
Quote:
Made your edit changes in both places and the mod now works perfectly for us.... :up: Regards, Doug |
Follow up ...
For those of you running this vb4 [AJAX] Post Thank You Hack mod by Abe ... https://vborg.vbsupport.ru/showthread.php?t=231666 There's a conflict when this mod puts it's ad as the last post. You can click the "Thanks" button but instead of the "Thanks" box appearing with your name pushing the ad down placed there by digitalpoint's mod and the "Thanks" button disappearing, all that happens is the "Thanks" button disappears as it should, but the screen jumps to the TOP of the thread. If you scroll back down to where the ad is, you'll see that the "Thanks" button is gone, but there's no "Thanks" box with your name. The "Thanks" action did happen though and if you turn OFF the Insert Ad After Post of this ad and view the same post the "Thanks" box is there with your name but of course, the Insert Ad After Post ad which appeared after it is gone because you've turned OFF that part of this mod. This problem seems to only happen when the post is the last one in the thread, at least that's what I think right now, since it doesn't happen when it places the ad after the first post, as an example. Hope this helps others .... :) Regards, Doug Edit: I was wrong ... this conflict exists regardless of what post the Insert Ad After Post element of this mod places the ad. It needs to be turned OFF if you're going to use it with Abe's mod. The place INSIDE ad part works terrific for us, particularly using naisho's edits to reverse the UserGroup ID connotation from being EXCLUDED to ONLY THESE GROUPs. |
Quote:
Quote:
|
Quote:
|
Quote:
I'm not really a programmer, but I assume you're referring to the Execution Order of the plugins for both mods? If so, both mods are currently a 5, so should I make yours a 4, or something like that? Regards, Doug |
Yep... try making mine 1 or something even... that way mine goes first and isn't doing anything to non-standard stuff that other plug-ins are injecting into the post.
|
1 Attachment(s)
Quote:
Doing that caused the "Thanks" to execute properly, but it placed its box under your ad, whereas it's normally tucked up flush under the post... Since all of its plugins (lots of them) are 5's, should I make yours a 6, which might cause it to put itself under their "Thanks" box? :confused: Thanks again .. :) Regards, Doug Edit: I did try 6 with ordering your mod, but that blocked out the "Thanks" box, except using 1, which split the "Thanks" box away from the bottom of the post. |
The ad that my addon inserts isn't necessarily at the end of the post... it inserts it into a random location inside the post (check it with a long post with lots of paragraphs in it to see what I mean). Because of that, there wouldn't really be a way to insert it after the "Thanks" part since it's inserting somewhere random inside the post, not necessarily the end of the post.
|
Quote:
It only happens when I turn ON the Insert Ad After Post part of the mod, not the part that displays inside the ad, which works fine, even with the "Thanks" mod. Check the pic in my last post and you can see that the ad splits the post when your plugin is set to 1 and overwrites the "Thanks" box (makes it disappear) when set to "5". Regards, Doug |
Oh, I see what you mean now... I was getting confused thinking it was something else. I fixed it for the next version, but for now if you go into the "Insert Inside & After Current Post" plug-in, change this:
Code:
$template_hook['postbit_end'] = $vbulletin->options['dppa_afterpost_html']; Code:
$template_hook['postbit_end'] .= $vbulletin->options['dppa_afterpost_html']; |
1 Attachment(s)
Quote:
All plugins left set to 5 and patching with your method above, conflicts with Abe's "Thanks" mod disappear, using 4.04 ... Thanks partner .. :) Regards, Doug |
If the post only has one paragraph it would always be in the same place. The randomness of it inserts it between paragraphs. It looked terribly weird/awkward when you were splitting between sentences within the same paragraph.
|
This mod is great, but so far doesn't do much more for me than the existing Google AdSense plugin built into vB. In fact I'm seeing conflicts between the two. When the after post option of this mod is enabled, it shows the space for the ad, but no ad actually shows up. Furthermore, it hides the ad at the bottom of the page that was already there for the built-in plugin (again, the space is there, but ad is missing) whether the after post option is enabled or not.
A few suggestions came to mind:
Thanks! |
All times are GMT. The time now is 06:13 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|