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 an intuitive and comprehensive navigation menu is crucial for an effective online store. Shopify's Dawn theme offers flexibility to add both a mega menu and a dropdown menu in your header. This guide will walk you through the steps to integrate these menus seamlessly. Step 1: Add the Required HTML Structure First, you need to update your theme's HTML structure to support both mega menus and dropdown menus. Here’s the updated HTML structure for your navigation menu. Please open the snippets/header-mega-menu.liquid and paste the code given below <nav class="header__inline-menu"> <ul class="list-menu list-menu--inline" role="list"> {%- for link in section.settings.menu.links -%} <li> {%- if link.links != blank -%} {%- assign is_mega_menu = false -%} {%- for block in section.blocks -%} ...