To make the email address selectable, please follow these steps:
- From Shopify's admin, select Apps.
- Select Store Locator.
- Select Settings.
- Select Display Settings.
- Copy and paste this code in the "Page Header HTML" field:
<script> jQuery(document).ready(function(){ var old_focus_and_popup = focus_and_popup; focus_and_popup = function (id){ return_val = old_focus_and_popup (id); setTimeout(function (){ jQuery(".gm_popup .email").click(function(){ var text = jQuery(this).text(); document.location = "mailto:" + text.trim(); }); jQuery(".gm_popup .email").css('text-decoration','underline').css('color','#2aa8e0'); }, 200); return return_val ; } }); </script>
- Select Save.
That's it!
Comments
Please sign in to leave a comment.