Forum

Thread tagged as: Members

Members App - Member Specific downloads

In the members App Im struggling to see how the member specific content works at all. I cant understand the documentation.

I have it installed and people can register and login but how do you get something to show on the page once someone is logged in?

How does download.php fit in? when i visit this I just get a blank page

Thanks

John Robinson

John Robinson 0 points

  • 5 years ago
Drew McLellan

Drew McLellan 2638 points
Perch Support

how do you get something to show on the page once someone is logged in?

You'd check if the member is logged in, and then show the content:

if (perch_member_logged_in()) {
    perch_content('My Member Content');
}