{"id":22240,"date":"2025-09-22T11:00:00","date_gmt":"2025-09-22T05:30:00","guid":{"rendered":"https:\/\/meetanshi.com\/blog\/?p=22240"},"modified":"2025-10-14T16:33:15","modified_gmt":"2025-10-14T11:03:15","slug":"shopify-product-image-gallery","status":"publish","type":"post","link":"https:\/\/meetanshi.com\/blog\/shopify-product-image-gallery\/","title":{"rendered":"How to Add a Shopify Product Image Gallery?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Adding a product image gallery in Shopify lets you showcase multiple product photos in one place.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In this guide, we\u2019ll show you how to easily add and customize a Shopify product image gallery using two different methods.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Different Ways to Add an Image Gallery to Shopify<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">There are mainly two options to add an image gallery section in Shopify, which are as follows<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use the Shopify theme editor &#8211; <\/strong>This method will require coding skills and is a time-consuming process. You have to create a new liquid file and add the code in it, and if any changes are required, you have to make changes in the code.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Directly add an image gallery section &#8211; <\/strong>Using an app provides a significant advantage with diverse pre-built sections (free and paid), enhancing functionality beyond standard themes for richer content and more customization without extensive coding.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How to Add a Shopify Image Gallery via Code?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here are the steps to create a product image gallery section using the custom code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Create a New Gallery Section in Shopify<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In your Shopify admin, navigate to <strong>Online Store &gt; Themes &gt; \u2026(three dots) &gt; Edit code.<\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"553\" height=\"173\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-customize-2.png\" alt=\"Navigate to Shopify theme edit code from the admin panel. \" class=\"wp-image-22243\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-customize-2.png 553w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-customize-2-250x78.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-customize-2-403x126.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-customize-2-120x38.png 120w\" sizes=\"auto, (max-width: 553px) 100vw, 553px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">In the Sections directory, click <strong>Add a new section<\/strong> and name it <strong>gallery-section.liquid<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Add the Code to the Section<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Paste this code in the newly created <strong>gallery-section.liquid<\/strong> file.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This code creates a basic gallery section with a title and a block for each image.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{{ 'section-gallery.css' | asset_url | stylesheet_tag }}\n\n&lt;div class=\"gallery-section\">\n  &lt;div class=\"page-width\">\n    {% if section.settings.title != blank %}\n      &lt;h2 class=\"gallery-section__title\">{{ section.settings.title | escape }}&lt;\/h2>\n    {% endif %}\n\n    &lt;div class=\"gallery-grid\">\n      {% for block in section.blocks %}\n        &lt;div class=\"gallery-grid__item\">\n          {% if block.settings.image != blank %}\n            &lt;div class=\"gallery-image-wrapper\">\n              &lt;img\n                src=\"{{ block.settings.image | img_url: '1024x' }}\"\n                alt=\"{{ block.settings.image.alt | escape }}\"\n                loading=\"lazy\"\n                class=\"gallery-image\"\n              >\n            &lt;\/div>\n            {% if block.settings.caption != blank %}\n              &lt;p class=\"gallery-caption\">{{ block.settings.caption | escape }}&lt;\/p>\n            {% endif %}\n          {% else %}\n            {{ 'image' | placeholder_svg_tag: 'placeholder-svg' }}\n          {% endif %}\n        &lt;\/div>\n      {% endfor %}\n    &lt;\/div>\n  &lt;\/div>\n&lt;\/div>\n\n{% schema %}\n{\n  \"name\": \"Gallery\",\n  \"tag\": \"section\",\n  \"class\": \"section-gallery\",\n  \"settings\": [\n    {\n      \"type\": \"text\",\n      \"id\": \"title\",\n      \"label\": \"Heading\",\n      \"default\": \"Image Gallery\"\n    }\n  ],\n  \"blocks\": [\n    {\n      \"type\": \"image\",\n      \"name\": \"Image\",\n      \"settings\": [\n        {\n          \"type\": \"image_picker\",\n          \"id\": \"image\",\n          \"label\": \"Image\"\n        },\n        {\n          \"type\": \"text\",\n          \"id\": \"caption\",\n          \"label\": \"Image caption\"\n        }\n      ]\n    }\n  ],\n  \"presets\": [\n    {\n      \"name\": \"Image Gallery\",\n      \"category\": \"Image\",\n      \"blocks\": [\n        {\n          \"type\": \"image\"\n        },\n        {\n          \"type\": \"image\"\n        },\n        {\n          \"type\": \"image\"\n        }\n      ]\n    }\n  ]\n}\n{% endschema %}\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Also, add CSS for modern and enhanced styling.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To do so, in the <strong>Assets<\/strong> directory, create a file named <strong>section-gallery.css <\/strong>and paste the following code.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This CSS file will control the layout and appearance of your gallery.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">.gallery-section {\n  padding: 50px 0;\n}\n\n.gallery-section__title {\n  text-align: center;\n  margin-bottom: 30px;\n}\n\n.gallery-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n  gap: 20px;\n}\n\n.gallery-grid__item {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n}\n\n.gallery-image-wrapper {\n  width: 100%;\n  overflow: hidden;\n  border-radius: 8px;\n}\n\n.gallery-image {\n  width: 100%;\n  height: auto;\n  display: block;\n}\n\n.gallery-caption {\n  margin-top: 10px;\n  text-align: center;\n  font-size: 14px;\n  color: #555;\n}\n\n.placeholder-svg {\n  width: 100%;\n  height: 250px;\n  background-color: #f0f0f0;\n  border-radius: 8px;\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Customize Using the Theme Editor&nbsp;<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Head to the theme editor, <strong>Online store &gt; Themes &gt; Customize. <\/strong>Find and<strong> <\/strong>add the section we created.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Then, from here, add the image you want to display in the image gallery. To make sure your visuals look sharp and load fast, check out our <a href=\"https:\/\/meetanshi.com\/blog\/shopify-image-sizes-guide\/\">Shopify Image Sizes Guide<\/a>.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"565\" height=\"112\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-5.png\" alt=\"Add the Image Gallery from the Shopify store's theme editor.\" class=\"wp-image-22261\" style=\"width:757px;height:auto\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-5.png 565w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-5-250x50.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-5-403x80.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-5-120x24.png 120w\" sizes=\"auto, (max-width: 565px) 100vw, 565px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Save <\/strong>the changes. And this is how it\u2019ll look, simple and minimal.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"243\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preivew-700x243.png\" alt=\"Preview of Shopify image gallery using code. \" class=\"wp-image-22263\" style=\"width:740px;height:auto\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preivew-700x243.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preivew-250x87.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preivew-768x267.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preivew-403x140.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preivew-964x335.png 964w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preivew-120x42.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preivew.png 1053w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">Steps to Add a Direct Shopify Image Gallery Section<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Now, let\u2019s try the image gallery section through a Shopify section app.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The best part is that the app gives you complete control to display your images without coding a single line. You can use the simple settings to make changes that fit your brand guidelines, which ultimately saves you a ton of time and effort.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"249\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-preview-5-700x249.png\" alt=\"Shopify image gallery section using MIT sections pro app\" class=\"wp-image-22266\" style=\"width:751px;height:auto\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-preview-5-700x249.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-preview-5-250x89.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-preview-5-768x273.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-preview-5-403x143.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-preview-5-964x343.png 964w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-preview-5-120x43.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-preview-5.png 1393w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">For creating a section just like the above displayed, we will use the <strong>MIT Sections Pro <\/strong>app, (super simple and easy) gives you numerous options to choose from and letting you try it for free.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install App &amp; Find Your Desired Section<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Install the<strong> <\/strong><a href=\"https:\/\/apps.shopify.com\/mit-custom-sections\" target=\"_blank\" rel=\"noopener\">MIT Sections Pro<\/a> app from the Shopify App Store. From the app dashboard, click the <strong>Browse section <\/strong>and search for the image gallery section.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"339\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-5-700x339.png\" alt=\"Select image gallery section from the MIT Sections Pro app dashboard. \n\n\" class=\"wp-image-22273\" style=\"width:799px;height:auto\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-5-700x339.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-5-250x121.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-5-768x372.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-5-403x195.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-5-964x467.png 964w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-5-120x58.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-5.png 987w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">Here we\u2019ll select the <strong>image gallery 1.<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Click on the &#8220;Try for Free&#8221; Button<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Once you select the section, click <strong>Try for Free <\/strong>to check the compatibility before making the purchase<strong>.&nbsp;<\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"384\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-4-700x384.png\" alt=\"Click Try for Free to check section compatibility \" class=\"wp-image-22275\" style=\"width:780px;height:auto\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-4-700x384.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-4-250x137.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-4-768x421.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-4-403x221.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-4-964x529.png 964w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-4-120x66.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-4.png 1205w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">During the free trial, you&#8217;ll be redirected to the MIT demo store. Once you&#8217;ve purchased the section, you can then add it to your own store&#8217;s theme.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Modify the Image Gallery Section&nbsp;<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Now add the section into the theme, click the <strong>Add section, <\/strong>and select <strong>Meetanshi Image Gallery 1.<\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"501\" height=\"189\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-3.png\" alt=\"Add&quot;Meetsanshi Image Gallery 1&quot; section. \" class=\"wp-image-22277\" style=\"width:623px;height:auto\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-3.png 501w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-3-250x94.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-3-403x152.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-3-120x45.png 120w\" sizes=\"auto, (max-width: 501px) 100vw, 501px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">This section offers a bunch of options to customize and style it as per your brand\u2019s aesthetic.&nbsp;<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"367\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-700x367.png\" alt=\"Editing the settings for the &quot;Meetsanshi Image Gallery 1&quot; section\" class=\"wp-image-22281\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-700x367.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-250x131.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-768x402.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-403x211.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-964x505.png 964w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-120x63.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section.png 1393w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Save <\/strong>the changes.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"388\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-save-700x388.png\" alt=\"Save the changes of the image gallery section\" class=\"wp-image-22283\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-save-700x388.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-save-250x139.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-save-768x426.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-save-403x224.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-save-964x535.png 964w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-save-120x67.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/click-save.png 1393w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">MIT Sections Pro: A Code-free Way to Add Sections&nbsp;<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">MIT Sections Pro is the ticket to creating the store of your dreams. With it, you have the freedom to design everything just the way you like.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Apart from the image gallery sections, it has 130+ free and paid pre-built sections, and you can easily add newsletters, banners, testimonials, FAQs, and more without any technical headache.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Get access to over 130 pre-designed sections, available in both free and paid options, making professional design accessible to all merchants<\/li>\n\n\n\n<li>The app is 100% free to install, and all free templates come with advanced customization features<\/li>\n\n\n\n<li>All sections are fully optimized for fast loading and are compatible with every Shopify theme<\/li>\n\n\n\n<li>Gain full customization control to perfectly match your store&#8217;s aesthetic and branding<\/li>\n\n\n\n<li>Easily add, edit, or replace sections as your business develops, ensuring your store grows with you<\/li>\n\n\n\n<li>Start for free and only pay for what you need, making it an affordable solution for businesses of any size<\/li>\n<\/ul>\n\n\n<div class=\"meetanshi-cta\">\r\n<div class=\"cta-content-wrapper\">\r\n<span>130+ Shopify Sections<\/span>\r\n<p>Your all-in-one solution to create a professional Shopify store<\/p>\r\n<a href=\"https:\/\/apps.shopify.com\/mit-custom-sections\" target=\"_blank\" class=\"btn-primary\" rel=\"noopener\">Install App Now<\/a>\r\n<\/div>\r\n<div class=\"cta-image-new\">\r\n<img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/11\/mit-sections-pro.png\" alt=\"MIT Sections Pro\">\r\n<\/div>\r\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Adding a product image gallery in Shopify lets you showcase multiple product photos in one place.&nbsp; In this guide, we\u2019ll show you how to easily&#8230;<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[787],"tags":[],"class_list":["post-22240","post","type-post","status-publish","format-standard","hentry","category-shopify"],"acf":[],"_links":{"self":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts\/22240","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/comments?post=22240"}],"version-history":[{"count":5,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts\/22240\/revisions"}],"predecessor-version":[{"id":23667,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts\/22240\/revisions\/23667"}],"wp:attachment":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/media?parent=22240"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/categories?post=22240"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/tags?post=22240"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}