Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Webikon s.r.o.

    (@webikon)

    Hi,

    You can try any membership plugin, which allows you to hide content from users that are not logged in.

    Alternatively, you can hardcode this into your theme:

    <?php
    if ( is_user_logged_in() ) {
         echo do_shortcode( '[contesthopper contest=XX]' );
    } else {
         echo 'Log in to enter the contest';
    }
    ?>

    Showing contest only for users which like a particular facebook page would need much deeper integration and is not supported at the moment.

    Thread Starter ZewaLogi

    (@amazinghulk)

    Thanks for answer.

    I am using Theme my login plugin but unregistered users can enter contest. Contest is in sidebar using ContestHooper widget.

    Where exactly in theme should i put that code?

    About liking facebook page. I meant is it possible that user gets extra entries by liking facebook page?

    Plugin Author Webikon s.r.o.

    (@webikon)

    Hi,

    This plugin only styles the login page and does not hide content from unregistered users.

    You will have to register a new widget area and programatically show it to logged in users. Maybe there’s even a ready plugin for that..

    So far, rewards are only calculated from sharing, not liking pages.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Contests only for registered users’ is closed to new replies.