custom Contact link
Posted: 02 Sep 2022, 17:40
is it possible to make the Contact link in the sidebar a simple mailto: instead of going to a physical page? thanks
X3 Photo Gallery Support Forums
https://forum.photo.gallery/
This can be done, but the easiest would be to use some simple Javascript, because X3 tries to create relative links from your email links. This will also help bypass bots that attempt to collect emails for spamming.pinkrabbit1357 wrote: is it possible to make the Contact link in the sidebar a simple mailto: instead of going to a physical page? thanks
var mail = document.querySelector('[href$="/mail/"]');
if(mail) mail.href = 'mailto:someone@somewhere.com';