Smilies in Quick Reply (3.7 Betas)
Read first: I haven't figured out how to insert the smilie dropdown option in the quick reply so I did the next best thing: Inserted a full editor. Then I eliminated the smilie box (attachment below) to simulate a quick reply.

I don't know if that's the best way to do it but for the people that were able to add the smilie dropdown didn't bother to share their code. So, down below is what I did (if you use it that's your choice):
1. Install
Show Smilies in Quick Reply.
2. In plugin "
Print Quickreply" with hook location "
private_complete" find 2/3 way:
Code:
$vbulletin->options['privallowsmilies'], 1, 0, 'qr');
Replace it with:
Code:
$vbulletin->options['privallowsmilies'], 1, 0, 'fe');
3. In template
editor_smiliebox find:
Code:
<if condition="$show['smiliebox']">
Replace it with:
Code:
<if condition="$show['smiliebox'] AND THIS_SCRIPT!= 'private'">
4. In template
gtpm_quickreply find:
Code:
<td class="panelsurround" align="center">
Replace it with:
Code:
<td class="panelsurround" align="left">
then find:
Code:
<div id="$editorid" class="vBulletin_editor" align="$stylevar[left]">$messagearea</div>
And replace it with:
Code:
<div id="$editorid" align="$stylevar[left]">$messagearea</div>
Save. Hopefully your PM Quick Editor will look like mine in the attachment. I also have the Favorite Smilies mod installed (shown in attachment #2). If it doesn't work at least the process was fun, right?