Ok, here's a quick fix for this. In your pop_preview.asp file change this:<% ' ########## Signature Preview Mod #################
if Request.Cookies("strSignaturePreview") = "" or IsNull(strSignaturePreview) then
strMessagePreview = Request.Cookies("strMessagePreview")
Response.Cookies("strMessagePreview") = ""
if strMessagePreview = "" or IsNull(strMessagePreview) then
if strAllowForumCode = "1" then
' If forum code is on use the forum code
strMessagePreview = "[ center ][ b ]< There is no text to preview ! >[/b][/center]"
else
' If forum code is off use html
strMessagePreview = "<center><b>< There is no text to preview ! ></b></center>"
end if
end if
strPreview = strMessagePreview
else
strSignaturePreview = Request.Cookies("strSignaturePreview")
Response.Cookies("strSignaturePreview") = ""
if strSignaturePreview = "" or IsNull(strSignaturePreview) then
if strAllowForumCode = "1" then
' If forum code is on use the forum code
strSignaturePreview = "[ center ][ b ]< There is no text to preview ! >[/b][/center]"
else
' If forum code is off use html
strSignaturePreview = "<center><b>< There is no text to preview ! ></b></center>"
end if
end if
strPreview = strSignaturePreview
end if
' ######################################################
%>
to this:<% ' ########## Signature Preview Mod #################
if Request.QueryString("preview") = "sig" then
strSignaturePreview = Request.Cookies("strSignaturePreview")
Response.Cookies("strSignaturePreview") = ""
if strSignaturePreview = "" or IsNull(strSignaturePreview) then
if strAllowForumCode = "1" then
strSignaturePreview = "[ center ][ b ]< There is no text to preview ! >[ /b ][ /center ]"
else
strSignaturePreview = "<center><b>< There is no text to preview ! ></b></center>"
end if
end if
strPreview = strSignaturePreview
else
strMessagePreview = Request.Cookies("strMessagePreview")
Response.Cookies("strMessagePreview") = ""
if strMessagePreview = "" or IsNull(strMessagePreview) then
if strAllowForumCode = "1" then
strMessagePreview = "[ center ][ b ]< There is no text to preview ! >[ /b ][ /center ]"
else
strMessagePreview = "<center><b>< There is no text to preview ! ></b></center>"
end if
end if
strPreview = strMessagePreview
end if
' ######################################################
%>
Make sure to remove the spaces around the [ center ] forum codes. Had to put them in so they wouldn't be converted.
Next change in pop_profile.asp, in the Javascript function:popupWin = window.open('pop_preview.asp', 'preview_page', 'scrollbars=yes,width=450,height=250')
to this:popupWin = window.open('pop_preview.asp?preview=sig', 'preview_page', 'scrollbars=yes,width=450,height=250')
If you have anymore problems with it let me know.