Skip to content

Remove the "Mail to Webadmin" link in the footer

Thomas Kuther edited this page Oct 22, 2017 · 2 revisions

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');
}
Clone this wiki locally