Adding social proof to your product pages can significantly increase trust and conversion rates. In this tutorial, we'll show you how to add a stylish Verified Testimonials block to your Shopify store using the Dawn theme . This block displays user avatars, names, and a verified icon—all customizable from the theme editor. ✅ Step 1: Open the main-product.liquid file Go to your Shopify Admin. Navigate to: Online Store → Themes → Edit code . Open the file: sections/main-product.liquid . Now add this code exactly as I’ve shown in the video — and yes, make sure to test it on a duplicate theme first! Full Code {%- when 'verified-testimonials' -%} <style> .verified-testimonials-container-{{block.id}} .verified-testimonials-user-icon-img-class { width: {{block.settings.verified_use...
Creating a comparison table in Shopify can greatly enhance your customers' shopping experience by allowing them to compare features, prices, and other attributes of different products or brands easily. In this blog post, we'll walk you through the process of setting up a customizable comparison table in Shopify using Liquid and CSS. Step 1: Set Up Your Shopify Section Create a New Section Navigate to your Shopify admin panel. Go to Online Store > Themes > Actions > Edit Code. Under the Sections folder, click Add a new section and name it comparison-table. Add the Liquid and HTML Code Copy and paste the following code into your new section file: Full code <style> /* Your CSS styles for .comparison-table */ .comparison-table { margin: 2rem 0; padding: {{ section.settings.padding_top_bottom }}px 0; font-family: Arial, sans-seri...