Author Topic: Signature separator  (Read 6230 times)

Offline tofinoguy

  • Jr. Member
  • **
  • Posts: 30
Signature separator
« on: October 26, 2006, 01:24:27 AM »
Does anyone know how can I remove the default signature separator (--)? I am assuming it has to deal with code in the app.js file.

Thanks

Offline Le_Tolier

  • Newbie
  • *
  • Posts: 2
Re: Signature separator
« Reply #1 on: November 24, 2006, 07:18:45 AM »
I interested by solution too :)

Offline Scubes13

  • Jr. Member
  • **
  • Posts: 48
Re: Signature separator
« Reply #2 on: December 06, 2006, 07:26:51 PM »
At first glance, near line 1740 in app.js, change:

Code: [Select]
sig = '-- \n'+sig;
to

Code: [Select]
sig = '\n'+sig;
That should do the trick.

Kevin L.

Offline tofinoguy

  • Jr. Member
  • **
  • Posts: 30
Re: Signature separator
« Reply #3 on: January 08, 2007, 04:43:26 AM »
Thanks Kevin,

Unfortunately this doesn't seem to take the signature separator out.

Offline blove57

  • Jr. Member
  • **
  • Posts: 18
Re: Signature separator
« Reply #4 on: April 13, 2008, 09:32:47 PM »
Yes it does work- thx Scubes13. It worked for me. Clear your cache and refresh.

Offline akelly

  • Newbie
  • *
  • Posts: 3
finding code to remove signature seperators
« Reply #5 on: July 21, 2009, 07:29:17 AM »
Hi Scubes13,

I'm not a coder at all......I found this forum based on my googling my frustrations to remove these annoying signature separators.

How do I get to your starting point?

At first glance, near line 1740 in app.js, change:


Code:
sig = '-- \n'+sig;

Thank you and greatly appreciate the help.