Advertising poster on phpbb3
2 posters
Page 1 of 1
Advertising poster on phpbb3
I've seen this https://help.forumotion.com/t97416-advertising-poster-on-punbb
by MrMario. And i'm curious that can this work in phpbb 3 or a slight editing needed for it to be used?
by MrMario. And i'm curious that can this work in phpbb 3 or a slight editing needed for it to be used?
pkw- New Member
- Posts : 13
Reputation : 0
Language : English
Location : Malaysia
Re: Advertising poster on phpbb3
Creating something similar in phpBB3 would require javascipt, and it would be much simpler than the template-based method in the tutorial. And less buggy.
In its basic form, the script would look something like:
In its basic form, the script would look something like:
- Code:
$(function() {
$('.post').last().after('<div class="post"><div class="postbody">Ad Text Info</div><div class="postprofile">Ad Poster Info</div></div>');
});
Guest- Guest
Re: Advertising poster on phpbb3
I did say "something like".
Actually the $.last() traversing function requires jQuery 1.4, so it wouldn't work on forumotion boards. So instead, we can use the :last selector. The following will work on forumotion phpBB3 boards, and just for "Gassy", I added a background and the rounded corners to make it look like a real post:
Actually the $.last() traversing function requires jQuery 1.4, so it wouldn't work on forumotion boards. So instead, we can use the :last selector. The following will work on forumotion phpBB3 boards, and just for "Gassy", I added a background and the rounded corners to make it look like a real post:
- Code:
$(function() {
$('.post:last').after('<div class="post" style="background:#ddd"><span class="corners-top"><span></span></span><div class="postbody">Ad Text Info</div><div class="postprofile">Ad Poster Info</div><span class="corners-bottom"><span></span></span></div>');
});
Guest- Guest
Re: Advertising poster on phpbb3
Thanks mate, it works
pkw- New Member
- Posts : 13
Reputation : 0
Language : English
Location : Malaysia
Re: Advertising poster on phpbb3
Since this thread appears to be solved, I will lock this thread and mark it as solved.
Sanket
Sanket
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Similar topics
» Advertising poster phpBB3 & Invision
» Advertising Poster for Invision
» i want to remove the advertising
» Advertising
» Advertising
» Advertising Poster for Invision
» i want to remove the advertising
» Advertising
» Advertising
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum