Creating customizable products in your Shopify store not only increase your customer satisfaction, it also increases your conversion rate. Here is a method to add custom options for your Shopify product and convert it into personalized product - Go to Shopify store page and search for "Advanced Product Customizer" app or you can directly the the Shopify app page by clicking on this link Advanced Product Customizer . Install Advanced Product Customizer app for free in your Shopify store From the application dashboard, enable to app embed block to complete the installation process Click "Product Custom Options" From the Shopify products list, select the product on which you want to add custom options. Advanced Product Customizer offers Image Swatch, Color Swatch, Text box, File Upload, Radio, Checkbox, Date Picker and more. Here is the a demo video for adding custom option for a Shopify product -
In this video we will give you a demo of how to use product variant metafields to show images of selected product variant. For demo purpose, we are using Dawn theme 12.0.0. This is a SEO friendly way to hide other images of product & show only images of selected product variants. Shopify global.js code filterVariantImages() { if (this.currentVariant.featured_image) { var featured_url = this.currentVariant.featured_image.src; const segments = featured_url.split('/'); const fileName = segments[segments.length - 1]; const fileNameWithoutQueryParameters = fileName.split('?')[0]; //document.querySelectorAll('[data-img-names]').forEach(img => img.style.display = 'none'); var imageElements = document.querySelectorAll('[data-img-names]') for (const imageElement of imageElements) { const imgNames = imageElement.getAttribute('data-img-names');