MyBB Community Forums

Full Version: Enable signature for all users in posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to enable signature for all users to show up in all their posts, new and old.
Any database query for that?
they can do it manually by there usercp. usercp>edit signature>enable to all post
(2011-09-04, 07:02 AM)silvercodes Wrote: [ -> ]they can do it manually by there usercp. usercp>edit signature>enable to all post

Sure they can do it, But I want to set a default signature for those who haven't enabled their signature
you can try below
UPDATE `mybb_users` SET `showsigs` = 1
UPDATE `mybb_posts` SET `includesig` = 1
Done Thanks Solved