Display caption for password protected albums

Hello,
I've installed, themed and love zenphoto!

What I'd like to do is just display a caption under each album on the album listing page (index.php) that says if the album is locked or not.

I've tried the "checkforpassword()" but my php not so good...

any ideas?
thanks!

Comments

  • `
    $pwd = $_zp_current_album->getPassword();
    if (zp_loggedin() && !empty($pwd)) {
    echo "password_protected";
    }
    `
Sign In or Register to comment.