Does Wix have a 'Send to a Friend' button?

Can a button be added to the header so that, when it is clicked, a form pops up allowing the reader to send that particular page to someone they think may be interested?

1 Like

Attaching you to email and Facebook

Turn it on with the on.Click function



let url = wixLocation.url;
wixLocation.to("https://www.facebook.com/sharer.php?u= "+ url);


let url = wixLocation.url;
wixLocation.to("https://mail.google.com/mail/u/0/?view=cm&fs=1&tf=1&source=mailto&su="+"&body="+ url);


I was hoping that I wouldn’t have to code stuff. Is there a ready-made form similar to a ‘contact’ button? Except the user does not contact the website; he contacts a friend to suggest his friend reads the same page?

I realize that browsers have ‘email link’ facilities, but not all of my readers would know that. I was hoping that I could increase the number of hits to my website by adding such a button to the header?