Author |
Topic  |
|
kcmule
Starting Member
19 Posts |
Posted - 30 March 2004 : 21:18:43
|
hello, i'm using the latest snitz forum and i have both the poll mod and avatar mod added and working. last night via avatar settings i increased the avatar size up to 96 pixels x 96 pixels, from 64 x 64. the avatars show up just fine, but somehow the city and state disappeared from the posts for each user. it is still in their profiles, and city and state are both ON in member details configuration.
any idea how i can get city and state to show up again? here's my forum:
coloradobills.com/forum/default.asp
thanks in advance,
craig |
Edited by - kcmule on 04 April 2004 03:28:31 |
|
kcmule
Starting Member
19 Posts |
Posted - 31 March 2004 : 19:00:39
|
would it help if i posted a link to my topic.asp file? |
 |
|
masterao
Senior Member
   
Sweden
1678 Posts |
Posted - 01 April 2004 : 17:15:39
|
Im guessing that you removed the code which prints out the city and state in your topic.asp. Have you checked topic.asp to see if the modification you did for displaying city and state are still there? |
Jan =========== FR Portal Forums | Active Users 4.0.20 Mod |
 |
|
kcmule
Starting Member
19 Posts |
Posted - 01 April 2004 : 20:04:26
|
hi jan
>the modification you did for displaying city and state
this was actually displayed by default on my forum, ie. i never modified any code to make it show. it wasn't until after i changed the avatars to a larger size that i, well, at least noticed that city and state were missing on everyones posts.
http://xxxxx-removedforsecurity-xxxxxxx
here is my current topic.asp, could you or anyone point me in the right direction as to which lines i should add/edit to get them to appear again?
much obliged for the assistance! |
Edited by - kcmule on 02 April 2004 04:29:32 |
 |
|
kcmule
Starting Member
19 Posts |
Posted - 02 April 2004 : 04:29:04
|
i figured it out. i lost the city/state on posts when i upgraded to the latest snitz forum. for some reason the newest version doesn't have this feature? weird. anyway, i found what i needed here- slightly altered to show city+state:
http://www.snitzbitz.com/mods/details.asp?Version=All&mid=111 |
 |
|
masterao
Senior Member
   
Sweden
1678 Posts |
|
kcmule
Starting Member
19 Posts |
Posted - 03 April 2004 : 01:58:27
|
i guess i need a little more help with this after all...
it DOES now show city and state and country, but ONLY when i am logged in. when i am logged out, it only shows the country.
http://xxxxxxxx.txt
any ideas how i can get city/state visible to all viewers, regardless of log in status?
thanks! |
Edited by - kcmule on 04 April 2004 03:28:11 |
 |
|
masterao
Senior Member
   
Sweden
1678 Posts |
Posted - 03 April 2004 : 04:50:10
|
Locate the following on lines 754-763 and remove the code marked red:
if mlev > 0 then
if strCity = "1" and trim(Reply_MemberCity) <> "" then
Response.Write " <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Reply_MemberCity & ",</small></font><br />" & vbNewLine
end if
end if
if mlev > 0 then
if strState = "1" and trim(Reply_MemberState) <> "" then
Response.Write " <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Reply_MemberState & "</small></font><br />" & vbNewLine
end if
end if
Then locate the following on lines 974-983 and remove the code marked red:
if mlev > 0 then
if strCity = "1" and trim(Member_City) <> "" then
Response.Write " <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Member_City & ",</small></font><br />" & vbNewLine
end if
end if
if mlev > 0 then
if strState = "1" and trim(Member_State) <> "" then
Response.Write " <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Member_State & "</small></font><br />" & vbNewLine
end if
end if
Then city and state will show up for all visitors. |
Jan =========== FR Portal Forums | Active Users 4.0.20 Mod |
 |
|
kcmule
Starting Member
19 Posts |
Posted - 04 April 2004 : 03:27:47
|
awesome, thanks very much ! props for the support. |
 |
|
masterao
Senior Member
   
Sweden
1678 Posts |
|
|
Topic  |
|