Author |
Topic |
forumnewbee
Starting Member
Netherlands
42 Posts |
Posted - 01 November 2002 : 22:00:01
|
hi there did some search but did not find it. How do you set the post counts and the country in the left part of the message underneath the author. Now its standing in the message in the bottom.
regards Perry |
Body & Fitness Forum |
Edited by - ruirib on 02 November 2002 10:11:19 |
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 01 November 2002 : 22:43:07
|
The country you set in your profile, the post count is automatic but as an Admin you can change it in a member's profile. |
|
|
DoraMoon
Average Member
Taiwan
661 Posts |
Posted - 02 November 2002 : 01:36:01
|
the blank line between Author Name and Post#,Country is reserve for showing member's Title and Rank Star (or other Mod addon, e.g.Avatar...). so i think unless you turn off the Rank feature on Admin Option, or it seem more reasonable for these blank space.
if you don't like it seperate too far... in topic.asp about line.580 if strShowRank = 2 or strShowRank = 3 then Response.Write " " & getStar_Level(Reply_MemberLevel, Reply_MemberPosts) & "<br />" & vbNewLine end if ' Response.Write " </p>" & vbNewLine & _ ' " <p>" & vbNewLine if strCountry = "1" and trim(Reply_MemberCountry) <> "" then
comment out or remove above Response.Write </p> <p> two lines. (and the same doing in about line.787 topic section..)
|
|
|
ErEf
New Member
Netherlands
74 Posts |
Posted - 02 November 2002 : 05:28:48
|
in topic.asp it has something to do with: Response.Write " <tr>" & vbNewLine & _ " <td colspan=""2"" valign=""bottom"" align=""left"" height=""20""><hr noshade size=""" & strFooterFontSize & """><font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """ color=""" & strForumFontColor & """></td></tr><td width=""100%"" nowrap>" & vbNewLine & _ " <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>Country: " & Reply_MemberCountry & " </small></font>" & vbNewLine & _ " <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>| Posts: " & Reply_MemberPosts & "</small></font></td>" & vbNewLine & _ " <td valign=""top"" align=""right"" width=""1""><a href=""#top"">" & getCurrentIcon(strIconGoUp,"Go to Top of Page","align=""right""") & "</a></td>" & vbNewLine & _ " </tr>" & vbNewLine & _ " </table>" & vbNewLine & _ " </td>" & vbNewLine & _ " </tr>" ....etc....
and there are 2 places where to change it.
can someone be specific, because I'm trying this but don't get it to work
I am using 3.4.3 from serverhacker. |
If you think you can or you think you cannot, you are right. - Henry Ford |
|
|
forumnewbee
Starting Member
Netherlands
42 Posts |
Posted - 02 November 2002 : 07:05:44
|
In this thread the post counts and Country is also on the left site thats indeed what I mean.
Greetz |
Body & Fitness Forum |
|
|
Rasco
Advanced Member
Germany
3192 Posts |
Posted - 02 November 2002 : 07:18:06
|
This should be default. Which forum are you using? |
German Snitz Forum
|
|
|
forumnewbee
Starting Member
Netherlands
42 Posts |
|
ErEf
New Member
Netherlands
74 Posts |
Posted - 02 November 2002 : 13:01:29
|
well duh... i just unzip the original in other folder and look for the difference :) let ya know |
If you think you can or you think you cannot, you are right. - Henry Ford |
|
|
DoraMoon
Average Member
Taiwan
661 Posts |
Posted - 02 November 2002 : 13:53:34
|
OMG !!
serverhacker's modded forum move the Country, Post# to a new table row (below the main post message..), it did'nt under the Author Name...
so you guys should be No this problem.....
anyway, above modified code only available for standard Snitz code. |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 02 November 2002 : 17:22:00
|
I would not mind knowing the code he used to do this |
De Priofundus Calmo Ad Te Damine |
|
|
DoraMoon
Average Member
Taiwan
661 Posts |
Posted - 02 November 2002 : 19:21:19
|
quote: Originally posted by forumnewbee
In this thread the post counts and Country is also on the left site thats indeed what I mean.
hi~ forumnewbee,
i think what you really mean is... you want take to the Country, Posts# "back" to below Author Name.(undo the change of serverhacker version, and just like the original snitz..)
if i'm not misunderstand again, i think you can compare the original v3.4.03 code, it just some html format change.
here is example topic.asp file. take_Country_Posts_back_topic.zip (i just get it from serverhacker a while ago, so i think it's lastest serverhacker version.) just search '##### take Country, Posts# back in code to see where to modify. (only 4 places and simple modification.) |
|
|
ErEf
New Member
Netherlands
74 Posts |
Posted - 04 November 2002 : 04:08:00
|
thnx Doramoon
but it's a 404 at this moment ;)
|
If you think you can or you think you cannot, you are right. - Henry Ford |
|
|
DoraMoon
Average Member
Taiwan
661 Posts |
Posted - 04 November 2002 : 06:16:45
|
quote: Originally posted by ErEf
but it's a 404 at this moment ;)
sorry~~ seem forgot upload it.. fixed!!
|
|
|
ErEf
New Member
Netherlands
74 Posts |
Posted - 04 November 2002 : 13:25:48
|
'cause the zip wasn't there and I didn't check it again I solved it like this:
http://forum.body-fitness.nl/forum/posts-to-avatar.txt |
If you think you can or you think you cannot, you are right. - Henry Ford |
Edited by - ErEf on 04 November 2002 13:29:13 |
|
|
DoraMoon
Average Member
Taiwan
661 Posts |
Posted - 04 November 2002 : 13:36:24
|
hi~ ErEf, i already correct the bad zip file link.. take_Country_Posts_back_topic.zip
and i think you should put the Country,Posts# code "out" of the Avatar {if - end if} condition.. |
|
|
ErEf
New Member
Netherlands
74 Posts |
Posted - 05 November 2002 : 02:54:25
|
The code how I managed to make it (I am not an programmer at all) did work.
But your code was idd better in the case someone did not fill in his country/location. So I used your example.
thnx a lot. and I learned the trim function. |
If you think you can or you think you cannot, you are right. - Henry Ford |
|
|
Topic |
|