The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
I am using snitz v. 3.4.05, and I have the avatar MOD installed.
I've also installed the DoraMoon avatar addon and everything is working rather well.
However, I know I haven't magaged to "modify/break" the code they way I was supposed to in the admin_add_avatar.asp, admin_edit_avatar.asp, and admin_review_avatar.asp files. I figure this is largely due to the fact that I know nothing about coding terms, and so I have no idea what "modify/break" is telling me to do.
Below I have copied the three segments of code that I am supposed to "modify/break" (DoraMoon's instructions are still imbedded in the code). If someone could show me what these sections are supposed to look like after you "modify/break" them, it would help me out a lot.
Thanks for your time.
From the admin_add_avatar.asp file:
Trim(ChkString(avatarName,"display")) & """ size=""40""></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td bgcolor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b> Reserve for Member: </b></font></td>" & vbNewLine & _
" <td bgcolor=""" & strPopUpTableColor & """><select name=""AvatarMemberID"">" & vbNewLine
'##### My Avatar addon 1-1 : modify/break above line and add below 1 section ' " <td bgcolor=""" & strPopUpTableColor & """><select name=""AvatarMemberID""><option value=""0"">none</option>" & vbNewLine
response.write "<option value=""-9"" style=""background-color:#FFEBEC""> Admin Only</option>" & vbNewLine & _
"<option value=""-8"" style=""background-color:#FFEBEC""> Admin/Moder</option>" & vbNewLine & _
"<option value=""-7"" style=""background-
From the admin_edit_avatar.asp file:
Trim(ChkString(avatarName,"display")) & """ size=""40""></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td bgcolor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b> Reserve for Member: </b></font></td>" & vbNewLine & _
" <td bgcolor=""" & strPopUpTableColor & """><select name=""AvatarMemberID"">" & vbNewLine
'##### My Avatar addon 1-5 : modify/break above line and add below 1 section ' " <td bgcolor=""" & strPopUpTableColor & """><select name=""AvatarMemberID""><option value=""0"">none</option>" & vbNewLine
response.write "<option value=""-9"" style=""background-color:#FFEBEC""" & chkSelect(avatarMemID,-9) & "> Admin Only</option>" & vbNewLine & _
"<option value=""-8"" style=""background-color:#FFEBEC""" & chkSelect(avatarMemID,-8) & "> Admin/Moder</option>" & vbNewLine & _
"<option value=""-7"" style=""background-color:#FEF1FF""" &
From the admin_review_avatar.asp file:
AvatarURL & " </td>" & vbNewLine & _
"<td bgcolor=""" & strForumFirstCellColor & """ align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """> " & AvatarName & " </td>" & vbNewLine & _
"<td bgcolor=""" & strForumFirstCellColor & """ align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """> "
'##### My Avatar addon 1-1 : modify/break above line and add below 1 section ' "<td bgcolor=""" & strForumFirstCellColor & """ align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """> " & AvatarMemberNAME & " </td>" & vbNewLine & _
if AvatarMEMBERID > 0 then
response.write AvatarMemberNAME
else
<
I've also installed the DoraMoon avatar addon and everything is working rather well.
However, I know I haven't magaged to "modify/break" the code they way I was supposed to in the admin_add_avatar.asp, admin_edit_avatar.asp, and admin_review_avatar.asp files. I figure this is largely due to the fact that I know nothing about coding terms, and so I have no idea what "modify/break" is telling me to do.
Below I have copied the three segments of code that I am supposed to "modify/break" (DoraMoon's instructions are still imbedded in the code). If someone could show me what these sections are supposed to look like after you "modify/break" them, it would help me out a lot.
Thanks for your time.
From the admin_add_avatar.asp file:
Trim(ChkString(avatarName,"display")) & """ size=""40""></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td bgcolor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b> Reserve for Member: </b></font></td>" & vbNewLine & _
" <td bgcolor=""" & strPopUpTableColor & """><select name=""AvatarMemberID"">" & vbNewLine
'##### My Avatar addon 1-1 : modify/break above line and add below 1 section ' " <td bgcolor=""" & strPopUpTableColor & """><select name=""AvatarMemberID""><option value=""0"">none</option>" & vbNewLine
response.write "<option value=""-9"" style=""background-color:#FFEBEC""> Admin Only</option>" & vbNewLine & _
"<option value=""-8"" style=""background-color:#FFEBEC""> Admin/Moder</option>" & vbNewLine & _
"<option value=""-7"" style=""background-
From the admin_edit_avatar.asp file:
Trim(ChkString(avatarName,"display")) & """ size=""40""></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td bgcolor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b> Reserve for Member: </b></font></td>" & vbNewLine & _
" <td bgcolor=""" & strPopUpTableColor & """><select name=""AvatarMemberID"">" & vbNewLine
'##### My Avatar addon 1-5 : modify/break above line and add below 1 section ' " <td bgcolor=""" & strPopUpTableColor & """><select name=""AvatarMemberID""><option value=""0"">none</option>" & vbNewLine
response.write "<option value=""-9"" style=""background-color:#FFEBEC""" & chkSelect(avatarMemID,-9) & "> Admin Only</option>" & vbNewLine & _
"<option value=""-8"" style=""background-color:#FFEBEC""" & chkSelect(avatarMemID,-8) & "> Admin/Moder</option>" & vbNewLine & _
"<option value=""-7"" style=""background-color:#FEF1FF""" &
From the admin_review_avatar.asp file:
AvatarURL & " </td>" & vbNewLine & _
"<td bgcolor=""" & strForumFirstCellColor & """ align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """> " & AvatarName & " </td>" & vbNewLine & _
"<td bgcolor=""" & strForumFirstCellColor & """ align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """> "
'##### My Avatar addon 1-1 : modify/break above line and add below 1 section ' "<td bgcolor=""" & strForumFirstCellColor & """ align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """> " & AvatarMemberNAME & " </td>" & vbNewLine & _
if AvatarMEMBERID > 0 then
response.write AvatarMemberNAME
else
<