main
alexanderroese 2024-06-17 23:39:11 +02:00
parent 8c84ae529b
commit e825b0a0a0
1 changed files with 1 additions and 15 deletions

View File

@ -340,21 +340,7 @@
console.log(pageInfo2)
var productInfo = {
title: "{{ product.title }}",
handle: "{{ product.handle }}",
id: "{{ product.id }}",
description: "{{ product.description | strip_newlines | escape }}",
type: "{{ product.type }}",
vendor: "{{ product.vendor }}",
price: "{{ product.price | money }}",
price_varies: "{{ product.price_varies }}",
compare_at_price: "{{ product.compare_at_price | money }}",
available: "{{ product.available }}",
tags: {{ product.tags | json }},
options: {{ product.options | json }},
variants: {{ product.variants | json }},
images: {{ product.images | json }},
featured_image: "{{ product.featured_image.src }}"
tags: {{ product.tags | json }}
};
for (var key in productInfo) {