Quote:
Originally Posted by aciurczak
Not seeing user sig here either. Neat mod!
(I first hardcoded the sig into the welcome messages themselves, but then realized people would be getting an email with the hardcoded sig in it)
|
You have to make a change to one of the plugins, "Cyb - Auto Reply - RW". Look for
PHP Code:
$postman->set('threadid', $car_threadid);
$postman->set('userid', $car_poster);
$postman->set('allowsmilie', true);
$postman->set('visible', true);
And add in
PHP Code:
$postman->set('showsignature', 1);
Directly under
PHP Code:
$postman->set('allowsmilie', true);
So your $postman->set section should look like this...
PHP Code:
$postman->set('threadid', $car_threadid);
$postman->set('userid', $car_poster);
$postman->set('allowsmilie', true);
$postman->set('showsignature', 1);
$postman->set('visible', true);
Worked for me.
Also, it only works on new posts, all your previous posts wont show a sig unless you modify the post and select the option to add a sig.