Group Admins

Plugins

Public Group active 4 years, 8 months ago ago

Talk about your favorite plugins and ask others for advice about finding or using Wordpress plugins

customer login / private page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1136
    Vincent Gentile
    Participant

    Hello – My client requests a customer login or private pages on the site for users to access private information. In the past, I have done this by creating the page and adding a password, however the client doesn’t want the page visible on a navigation menu.

    Is there a way to do this or a widget that will accomplish this..?

    #1807
    Steve
    Keymaster

    hi Vincent,

    I think the best way to do it is with a Page Template:
    http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates

    Then wrap all the top secret content with a conditional:
    if (is_user_logged_in()) {
    // You page code goes here
    } else {
    echo “You must be logged in to view this page.”;
    }

    Hope that helps,

    Steve

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.