To add to WMPUDEV’s floating social an add to email button you can add the following code to Settings> Floating Social > Add New Custom Service > Code
The button will open the default mail client and construct a message that includes the post’s URL.
You may need to tweak the floating social css to position the icon correctly.
You will need to modify this to point to your own (or some one else’s icon for email)
<div class='my_email_button'> </div> <script> jQuery(function($){ $(".my_email_button").prepend('<a href="mailto:?subject=I wanted you to share this post with you&body=Check out this post '+document.URL+'" title="Share by Email"><img src="http://myiconurl.com/images/email.png"/></a>'); }); </script>
Leave a Reply