This article outlines how to make your store's email addresses selectable to your customers.
Setup
- From the Shopify admin, select Apps.
- Select Store Locator.
- Select Settings.
- Select Display Settings.
- Copy and paste this code into 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.