Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

Hide "Popular Tags" for guest visitors until they are logged in*

Hi All, new to Vanilla, but I have it working really well. Only one issue so far - I want to hide everything unless the visitor is signed up. I have managed to do this and hide everything except Popular Tags are still visible on the homepage. Any idea how I can hide these until after login?
Tagged:

Comments

  • You can do it by editing file /plugins/Tagging/class.tagmodule.php

    Find function ToString (its at line 43)

    add a new line after line 47 and paste there following code:

    if (Gdn::Session()->UserID == 0) return '';

    We do here check if user has logged in - the condition in parentheses, and return an empty line instead of html block, if he has not.

    I know it is a dirty hack, but it works :P
Sign In or Register to comment.