Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kishaningithub/hugo-shopping-product-catalogue-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--importer/shopify/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/importer/shopify/index.js b/importer/shopify/index.js
index 7977035..c021510 100644
--- a/importer/shopify/index.js
+++ b/importer/shopify/index.js
@@ -32,7 +32,7 @@ function getFrontMatter(product) {
frontMatter.categories = [product.product_type];
}
frontMatter.images = product.images.map(image => image.src);
- frontMatter.thumbnailImage = product.images[0].src;
+ frontMatter.thumbnailImage = product.images[0].src.replace('.jpg', '_large.jpg').replace('.png', '_large.png');
if(product.options[0].name == "Title"){
frontMatter.options = {}
} else {