Skip to content
WJunction - Webmaster Forum

Lastest post ..by chatbox

Status
Not open for further replies.
Lastest post ..by chatbox [Phpbb]

Can Some1 help me make this mod plz :) ive requested loads and not 1 person has hlept :( lol

Code:
http://www.phpbb.com/community/viewtopic.php?f=69&t=1521595

i want that mod so it shows up like on here on wj :) ( next to the chatbox ?

based on prosilver
 

24 comments

yeh i no dude .. but if sum1 can use some of the code from the last 5 post mod ..and jus edit the html

and using prosilver and mchat installed ....if i make sence
 
Wj is using vB and you need for phpbb. I don't think there is an modification for phpbb.
Huh? and vB is running on special Chatbox and Recent Posts mod? :|

Anyway it is possible, you just install phpBB Chatbox (mchat i think), latest posts mod, and edit codes little.

If you don't know how to do it (just basic html/css) then you should think twice before even running Forum.
 
No Not Reali i do know a few lil little bits ...doesnt mean i shuldnt mean i cant run a forum i just have got that much knowledge on html and css yet
 
The mod on wjuntion is made by them, and as they told you this is VB not phpBB! I haven't seen a mod like this for phpbb! it would be great.
 
its possible using nv last posts. Its not really a mod your looking for, its somebody to create an outlay for you.

Iv made it myself.
 
This is really easy actually i did a quick one now but this is not the best top stats to use it looks ugly
fe7f6bba24.png


Here is how to do it open index_body.html
Find
Code:
<!-- INCLUDE forumlist_body.html -->
Before add
Code:
<div style="float:left;width:600px;"><!-- IF S_MCHAT_ENABLE and S_MCHAT_ON_INDEX and S_MCHAT_LOCATION --><!-- INCLUDE mchat_body.html --><!-- ENDIF --></div>

<div style="float:right;width:600px;"><!-- INCLUDE top_five_body.html --></div>
You may want to open includes/top_five.php
And change the number at the end of this code to 9

From
Code:
$result = $db->sql_query_limit($db->sql_build_query('SELECT', $sql_ary), 5);
to

Code:
    $result = $db->sql_query_limit($db->sql_build_query('SELECT', $sql_ary), 9);

So it looks like the above images and do the same for the others this will raise your queries thought that's why its pointless using this mod
 
no problem need anymore help just let me know (y)

EDIT:
by the way i was assuming you are using mchat you can do the same for the other chatboxes just change the mchat code to the one you are using
 
ok played around abit try this

open index_body.html

Find
<!-- INCLUDE forumlist_body.html -->
Before add
Code:
<div id="mchat" style="width:59.5%"><!-- IF S_MCHAT_ENABLE and S_MCHAT_ON_INDEX and S_MCHAT_LOCATION --><!-- INCLUDE mchat_body.html --><!-- ENDIF --></div>

<div id="topt" style="width:40%"><!-- INCLUDE top_five_body.html --></div>

Open style.css
At the end add this
Code:
#mchat  {
width : 98%;
float : left;
}
#topt {
width : 2%;
float : right;
}
Should work for all screen sizes this time
 
Status
Not open for further replies.

About the author

B
Active Member · Joined
195
Messages
0
Reactions
16
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom