PDA

View Full Version : remove quotes from msg reply


ohadpartuck
05-22-2012, 12:30 PM
Hi,
I want to drop the quote that is given in the quick response to private msgs automatically.
Does any one know where is the hack for that?

there is probebly a js file that adds that dynamically..
how do you find out something like that?

kh99
05-22-2012, 01:41 PM
Try this: create a new plugin using hook editor_toolbar_start and this code:

if (THIS_SCRIPT == 'private' AND $editor_type == 'qr')
{
$text = '';
}

ohadpartuck
05-23-2012, 04:56 AM
thanks! it worked!\
kh99 - your'e the best!

--------------- Added 1337753041 at 1337753041 ---------------

kh99,
could you help out in another related thing -
1. I need to set the minimum height of the quick response in the Forums to let's say 250px - where is te hook for that?
2. Is there a lists of hooks names and their locaions somewhere?