Try this
In pop_profile.asp
line 199 add
strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_BIO"
strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_SIG"
strSql = strSql & " FROM " & strMemberTablePrefix & "MEMBERS "
Line 304 add below end if ' strPicture this
if strSignatures = "1" then
Response.Write " <tr>" & vbNewLine & _
" <td align=""center"" bgcolor=""" & strCategoryCellColor & """ colspan=""2""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strCategoryFontColor & """> My Signature </font></b></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr>" & vbNewLine
if Trim(rs("M_SIG")) <> "" then
Response.Write " <td bgColor=""" & strPopUpTableColor & """ align=""center"" colspan=""2"">" & formatStr(rs("M_SIG")) & "</td>" & vbNewLine
else
Response.Write " <td bgColor=""" & strPopUpTableColor & """ align=""center"" colspan=""2""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>No Signature</font></td>" & vbNewLine
end if
Response.Write " </tr>" & vbNewLine
end if