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
<!-- Disable keyboard keys --> | |
<script> | |
document.onkeydown = function(e) { | |
return false; | |
} | |
</script> | |
<!-- Disable images drag --> | |
<script> | |
window.ondragstart = function() { |
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
{% assign current_variant = product.selected_or_first_available_variant %} | |
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org/", | |
"@type": "Product", | |
"name": {{ product.title | json }}, | |
"url": {{ shop.url | append: product.url | json }}, | |
{%- if product.featured_media -%} | |
{%- assign media_size = product.featured_media.preview_image.width | append: 'x' -%} |
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
<!-- /snippets/schema-markup.liquid --> | |
<script type="application/ld+json"> | |
{%- if template == 'index' -%} | |
{ | |
"@context": "http://schema.org", | |
"@type": "WebSite", | |
"name": "{{ shop.name }}", | |
"alternateName": "{{ shop.description }}", | |
"url": "{{ shop.url }}" |
NewerOlder