Add Signature to Entire Usergroup

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Destee
    Senior Member
    • Feb 2001
    • 186

    Add Signature to Entire Usergroup

    Hello Everyone,

    I have a usergroup that is not allowed to have a signature.

    Is it possible to use that signature space for whatever i'd like?

    I need instructions on how to add the same signature text to an entire usergroup.

    Can you tell me how to do this please?

    Thanks.

    Destee
    destee.com
  • Lats
    Senior Member
    • Mar 2002
    • 3671

    #2
    Are you aware that if the 'can use signature' option for the usergroup is set to no, the signature block won't be shown without editing the postbit template? kick me if I'm wrong here

    Anyway, run this query to change the signature for all members in one usergroup.
    Code:
    UPDATE
    usertextfield
    LEFT JOIN
    user
    ON
    user.userid = usertextfield.userid
    SET
    signature = 'Locked in Signature block'
    WHERE
    user.usergroupid = X
    Replace the X with the usergroupid that you want changed, and the text of course.
    Lats...

    Comment

    Related Topics

    Collapse

    Working...