Skip to main content

Posts

Showing posts from January, 2020

Hide Div. on click body element in toggle

$(".toggle-tt").click(function(e){       e.stopPropagation()       $(".hover-tooltip1").toggle();       return false;     });  $(window).click(function() {     if($(".hover-tooltip1").length) {       $(".hover-tooltip1").hide();     }   }); Hide Div on click body element in toggle 

Change Contact Us email subject line or the email address Shopify

It would be great to be able to change the subject line via the form inputs. Please allow us to put a hidden input and set the subject line where possible. Also great would be to change the to email. <input type = "hidden" name = "contact[subject]" value "My New subject line" /> <input type = "hidden" name = "contact[send-to]" value " bob@someemail.com " />