I already checked the Zenphoto template functions to find out how to use printPasswordForm,
but still do not know how to hide the link to "I forgot my User ID/Password"
I suppose its $hints=false, or $_password_hint=false
printPasswordForm($_password_hint = false,$_password_showuser = true);
Thanks
Comments
In zp-core/lib-auth.php around line 1008:
if ($hint) {
echo '<p>'.$hint.'</p>';
}
if (OFFSET_PATH != 2) {
?>
<p class="logon_link">
/admin.php',['logon_step=challenge', 'ref='+$('#user').val()]);" >
<?php echo gettext('I forgot my User ID/Password'); ?>
</p>
But I guess you are right it's not hideable without changing this core lines....
Thanks for your fast reply.
`
.logon_link {
display: none;
}
`
your CSS tip did the job.
with your CSS trick I could change my theme without
changing any zp-core files...