![]() |
Quote:
|
Installed work fine
but footer module I canot save new adcode canot save the setting even canot off and ON |
Am I right in thinking the option to show an advertisement underneath the last post is no longer available?
Thanks. |
Yep, it's there in the changelog. The reason was that none of the other sections had a similar option and I decided it was a lot simpler and more consistent to just remove it. I'm not convinced it was a good idea but I've had no complaints as yet.
|
Cannot use this product -- vB 3.8.1, vBSEO, and a few other plugins/products.
When product is installed most AJAX functions cease to work. Inline editing of posts is probably the most annoying of the loses. Simply uninstalling the product fixes the issue. I have repeated this modification several times each time beginning and ending with the same results. |
Older one is more easy and work good
|
Quote:
|
Quote:
You should be able to replicate it by adding a custom block, setting it to use the SHOWTHREAD template and then inserting it above Quick Reply. Same goes for the other places where a "Display with last" option would be useful, so it's probably a better option overall, if less convenient. Quote:
|
my forum installed vbseo only header work fine
all other modules canot work |
great mod,
|
Quote:
But there is no need to uninstall - deactivating does the same till there is a Fix. :( Opened a Thread at vBSEO Support - in most Cases they can help. |
1 Attachment(s)
IS it possible to add an advertisement on the first post like attached image?
|
Great Mod This is a Must mod nominated for MOTM .Thank you for ur good work Redtyger
|
please be back add after last post
|
Quote:
Quote:
Search for $ad_location[ad_showthread_firstpost_start] in the postbit template and after it add $vbam_location[post_message] (note at the end). Set your ads to display every 1 post, choose the post_message template hook from the menu and for your adcode use this: Code:
<if condition="$GLOBALS[post][postcount] % $vboptions[maxposts] == 1"> The conditional is what restricts it from really appearing every 1 posts so if you're using other postbit adcode you'll have to work conditionals around it. While I'm on the subject, if anyone wants to include an advertisement with the last post before/if the option is added back in, just use this conditional: Code:
<if condition="$GLOBALS[post][islastshown]"> * Unfortunately, vBulletin's use of ad_location hooks prevents anyone else using them unless I've included a specific workaround, which I haven't for that one. So unfortunately you have to make your own. I'll probably just remove ad_location hooks entirely. Quote:
|
Glad to see you back RedTyger :up:
Will install this as soon as it works with VBSEO :) |
I've installed this and am using it in my header. As said, gotta hit edit twice... Not a show stopper for me but would be nice to have fixed.
My other question... I believe it was this modification that previously allowed me to include an ad after every X post and after X threads, etc... Very flexible. I see all of that was removed (unless I'm thinking of another mod). Any way to put these back, I thought they were great. |
Quote:
|
The auto-refresh feature doesn't seem to be working for me, is that a known bug or is something else the cause?
|
Quote:
Also, left/right columns don't show up on the right or left, but rather on the bottom. Where can I have the ads displayed between ever X thread/post/etc...? |
Think I found another bug.
If I'm writing a PM to someone and a google ad is appearing in my header, I get "Page loaded but with errors" and the message wont send. I have a regular OpenAd which rotates with the google ad. If the Open Ad is showing, I receive no errors and the PM sends with no problem. |
1 Attachment(s)
After installing this my showthred page messed up. Also the header adcode not working. In ACP the preview works just fine but in forum there is nothing!
Without vBAM: Attachment 94313 With vBAM: Attachment 94314 P.S. For testing I've enabled this in my dev forum with almost free of hack & disabled in my live forum. |
Quote:
Quote:
|
Quote:
|
I don't have vBSEO in my test forum :rolleyes:
|
I tried installing this. Immediately after loading the xml file I got these errors:
Warning: include_once([path]/includes/vbam_functions.php) [function.include-once]: failed to open stream: No such file or directory in [path]/global.php(400) : eval()'d code on line 2 Warning: include_once() [function.include]: Failed opening '[path]/includes/vbam_functions.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/global.php(400) : eval()'d code on line 2 Fatal error: Class 'vbam' not found in /home5/stangsof/public_html/forum/global.php(400) : eval()'d code on line 3 |
Quote:
BTW - i tested it with the vbSEO 3.3 PR and the actually Stablerelease. If it has still something to do with vBSEO it could be only the .htaccess: Quote:
|
Everything is different, I rewrote the entire thing. You can remove the above code, I've made a note of it for testing. I don't see anything obvious, but regular expressions often aren't.
|
Update - i tested it without the .htaccess - Problems have nothing to do with vBSEO in any way.
|
Great mod! Thank you so much for your work.
One bug we've run across, the option Allow HTML in shared adcode does not work when set to YES, as HTML is not parsed. I have a small team of creative people I trust, so security is not a problem for this usergroup and it would be nice to give them some freedom. |
Fix/Solution for vBSEO Problem:
Quote:
THIS WORKS!!! |
Hey guys, I get this:
Quote:
|
Quote:
Quote:
Quote:
|
For some reason my edit button would not work any more, until i disabled this mod. Any ideas???
|
dunno if im doing something wrong or dont understand this thing....
i just installed this, put the ad in the header, enabled the header ad, and nothing is showing. am i suppose to do something special? put a $header_ad or something in a template or is this auto insert? i tried it in the header, didnt work. i tried it with PM's and nothing as well. |
How to display adsense after first post
Please help me |
Quote:
|
The auto refresh doesnt work, and on IE on the bottom left is shows errors so I searched the lines that were causing errors (3 of them) it states it as a syntax error
Code:
<script type="text/javascript">setInterval(function(){recreatead("header", "ajax.php", , "header")}, 10190)</script> so I found the code in the php file but not sure how to fix it Code:
return '<script type="text/javascript">setInterval(function(){recreatead("'.$adcode_name.'", "'.$file.'", '.(string) $is_bit.', "'.$setting_name.'")}, '.$refresh.')</script>'; Code:
function recreatead(id, file, is_bit, setting_id) Can you double check if its the code or a setting that went wrong? Thanks |
Excellent detective work, that certainly is the problem. Try this, I can't test it at the moment:
FIND: Code:
function refreshad_js($adcode_name, $file, $is_bit = false, $setting_name = '') REPLACE WITH: Code:
function refreshad_js($adcode_name, $file, $is_bit = 'false', $setting_name = '') FIND: Code:
// Avoid getting stuck in a loop if the value is no good. BELOW, ADD: Code:
// Force boolean string conversion more effectively. FIND: Code:
'.(string) $is_bit.' REPLACE WITH: Code:
"'.$is_bit.'" |
Hehe it is my field of interest :)
anyway that did fix the syntax errors , now it does refresh but the new problem is that when it refreshes it just disappears so for example I see the first ad for 10 seconds and then it goes away, and I am separating the ads using the "|" delimiter. Any clue? Thanks |
All times are GMT. The time now is 01:04 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:
|