Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
DoFollow Signature for members with 100+ posts
shasha
New
Is there a way to give dofollow signature for members with 100+ posts? i.e their nofollow signature should automatically get converted into dofollow after completing 100 posts.
Thanks in advance.
Tagged:
0
Comments
Signature is formatted with Gdn_Format and if you look here https://github.com/vanillaforums/Garden/blob/2.0/library/core/class.format.php you'll find that:
So you might try to set Gdn_Format->DisplayNoFollow = false before that line in the class.signatures.plugin.php:
$UserSignature = Gdn_Format::To($Signature, $SigFormat)."<!-- $SigFormat -->";
for every user with CountDiscussions + CountComments > 100 :That's only a guess but maybe the way to start...
@R_J - Thanks for your input. I ll try if this works.
did it work?