This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.et_pb_slide:first-child .et_pb_slide_image, | |
.et_pb_slide:first-child .et_pb_slide_image img, | |
.et_pb_slider .et_pb_slide:first-child .et_pb_slide_description, | |
.et_pb_slide:first-child .et_pb_slide_image img.active { | |
-webkit-animation-duration: 0s !important; | |
animation-duration: 0s !important; | |
opacity: 1 !important; | |
animation: none !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- template.name {{ template.name }} --> | |
{% case template.name %} | |
{% when 'index' %} | |
<link rel="canonical" href="{{ shop.url }}"> | |
{% when 'collection' %} | |
<link rel="canonical" href="{{ shop.url }}/collections/{{ collection.handle }}"> | |
{% when 'product' %} | |
<link rel="canonical" href="{{ shop.url }}/products/{{ product.handle }}"> | |
{% when 'page' %} | |
<link rel="canonical" href="{{ shop.url }}/pages/{{ page.handle }}"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://intuitive-theory.com/notes/onetab-delete-all-saved-tabs-script/ | |
function delete_single() { | |
for (clickable of clickables) { | |
if (!clickable || clickable.innerHTML !== "Delete all") | |
continue; | |
clickable.click(); | |
return true; | |
} | |
return false; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Enter Your Custom Functions Here */ | |
// Add custom validation for CF7 form fields | |
function is_company_email($email){ // Check against list of common public email providers & return true if the email provided *doesn't* match one of them | |
if( | |
preg_match('/@gmail./i', $email) || | |
preg_match('/@hotmail./i', $email) || | |
preg_match('/@live./i', $email) || | |
preg_match('/@msn./i', $email) || | |
preg_match('/@aol./i', $email) || |
NewerOlder