Remove the "Mail to Webadmin" link in the footer - Piwigo/piwigo-bootstrap-darkroom GitHub Wiki
To remove that link, use a custom plugin:
add_event_handler('loc_end_page_tail', 'removecontact');
function removecontact() {
global $template;
$template->clear_assign('CONTACT_MAIL');
}