No Signature links until x amount of posts?

Looking for a MOD? Have a MOD request? Post here for help. (Note: This forum is community supported; phpBB does not have official MOD authors)
Get Involved
Methok
Registered User
Posts: 22
Joined: Sat May 17, 2008 10:08 am

No Signature links until x amount of posts?

Post by Methok »

Hi all,

Is there a MOD or can it be requested for one that will stop someone from displaying their signature until x amount of posts?

Thank you
User avatar
KevC
Support Team Member
Support Team Member
Posts: 72616
Joined: Fri Jun 04, 2004 10:44 am
Location: Oxford, UK

Re: No Signature links until x amount of posts?

Post by KevC »

You could use the newly registered users group for that.

In user registration settings, set the new member post limit to what ever number of posts you want.

Then in the permission user roles, edit that groups permissions for 'can use signature' to never. You might want to allow posting without approval in the forum permissions role otherwise you'll have to approve all those posts too.

If it's to stop spambots, have a look at the sticky topic at the top of the support forum and implement a good Q&A question and you'll stop them signing up in the first place.
-:|:- Support Request Template -:|:-
Image
"Step up to red alert. Sir, are you absolutely sure? It does mean changing the bulb"
Methok
Registered User
Posts: 22
Joined: Sat May 17, 2008 10:08 am

Re: No Signature links until x amount of posts?

Post by Methok »

Thank you Kevin,

Yeah it not for spam bots, more an incentive to post more.

Thank you for your suggestion.
User avatar
Oyabun1
Former Team Member
Posts: 23162
Joined: Sun May 17, 2009 1:05 pm
Location: Australia
Name: Bill

Re: No Signature links until x amount of posts?

Post by Oyabun1 »

To extend that concept further, maybe something like the Auto Groups MOD, set up with different groups having different permissions, and then as members posted more they would automatically move into another group with further permissions.
                      Support Request Template
3.0.x: Knowledge Base Styles Support MOD Requests
3.1.x: Knowledge BaseStyles SupportExtension Requests
User avatar
Stoker 4.0
Registered User
Posts: 1506
Joined: Sun Feb 13, 2011 1:33 pm
Location: Funen, Denmark
Name: Ulrik Christensen

Re: No Signature links until x amount of posts?

Post by Stoker 4.0 »

Methok wrote:Thank you Kevin,

Yeah it not for spam bots, more an incentive to post more.

Thank you for your suggestion.
You can do this with a single template edit.
Open styles/prosilver/template/viewtopic_body.html
Find: <!-- IF postrow.SIGNATURE -->
Replace with: <!-- IF postrow.SIGNATURE and postrow.POSTER_POSTS > 15 -->
Save, upload and refresh the template.
Now users signature in viewtopic is only visible if the user has more than 15 posts.

If you want to do the same in the memberlist:
Open styles/prosilver/template/memberlist_view.html
Find: <!-- IF SIGNATURE -->
Replace with: <!-- IF SIGNATURE and POSTS > 15 -->

What the heck, lets do it with private messages too:
Open styles/prosilver/template/ucp_pm_viewmessage.html
Find: <!-- IF SIGNATURE -->
Replace with: <!-- IF SIGNATURE and AUTHOR_POSTS > 15 -->
Regards Stoker
Methok
Registered User
Posts: 22
Joined: Sat May 17, 2008 10:08 am

Re: No Signature links until x amount of posts?

Post by Methok »

Thats Brilliant, Thank you Stoker.

Return to “[3.0.x] MOD Requests”