Sometimes, even though the mods want you to use the search prior to asking a question about a mod, it's not so practical. Maybe you'll have to sort through tons of search responses/threads to find your answer, maybe the thing is so well hidden it becomes more of a problem to search for the rarity than to just post the question again, or to contact other members. For this reason i'm posting this code modification. I know it's been discussed a number of times, and people still show up and ask about how to do it, where the code is at, etc. Maybe this will help a few find the answer quicker.
This is the code to add the smiley table to the quickpost box at the bottom of topic.asp . This modification is in another smiley mod that i havent looked at personally. You'd use this code mod if you weren't planning on using any of the other smiley mods. This is just a plain and simple mod to put the smilies in quick post. Nothing more. This is what i did on one of my own forums. There may or may not be more that needs to be done (you could always do more to enhance it), but this is bare bones and it seems to be working fine for me. Again, this doesnt add any other smileys or any fancy things. Hope this is helpful for the few who need it. If there are any additions or modifications that i find i'll post an update. As of now, this is all i know that is required.
At Line: 1137 of TOPIC.asp (Your copy of Topic.asp might be different, mine is customized)
Look for this:
if strSignatures = "1" then
Response.Write " <br /><input name=""Sig"" type=""checkbox"" value=""yes""" & chkCheckbox(intSigDefault,1,true) & ">Include Signature<br />" & vbNewLine
end if
This is the last item of colum 1 in the quick post table. The Signature checkbox. Add this directly after it, on the next line (Hit Return to make a space to add this). It's line 1140 on mine.
if strIcons = "1" and strShowSmiliesTable = "1" then
%>
<!--#INCLUDE FILE="inc_smilies.asp" -->
<%
end if
That's all you need to do. If you have questions, email me. It's pretty easy and self explanatory, and again i'm sure it's posted in other places/other topics. My ending code looks like this for reference...
Begins at line 1137:
if strSignatures = "1" then
Response.Write " <br /><input name=""Sig"" type=""checkbox"" value=""yes""" & chkCheckbox(intSigDefault,1,true) & ">Include Signature<br />" & vbNewLine
end if
if strIcons = "1" and strShowSmiliesTable = "1" then
%>
<!--#INCLUDE FILE="inc_smilies.asp" -->
<%
end if
Response.Write " </font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine & _
Also note, that you may want to change the size of the TEXT AREA since adding the smileys will make the table larger. Just change the number of ROWS from 6 to however many you want. For mine, i gave it 10. That specific line is 1150 on mine, and looks like this:
<td width=""" & strTopicWidthRight & """ bgColor=""" & strForumCellColor & """><textarea name=""Message"" cols=""50"" rows=""10"" wrap=""VIRTUAL"" style=""width:100%""></textarea><br /></td>" & vbNewLine & _