Skip to main content

Posts

Showing posts from December, 2024

How to Add a Social Proof Block in Shopify Product Page (Dawn Theme)

 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...

How to Create a Dynamic YouTube Video Slider in Shopify

 A visually engaging website can make all the difference in capturing customer attention and increasing conversions. One powerful way to achieve this is by adding a dynamic YouTube video slider to your Shopify store. A video slider can showcase your brand’s story, highlight product features, or share customer testimonials, all in an interactive format. In this blog, we’ll walk you through the step-by-step process to create a YouTube video slider in Shopify. Why Add a YouTube Video Slider to Your Shopify Store? Before diving into the technical steps, here are a few reasons to add a video slider to your site: Enhanced User Engagement: Videos are more engaging than static images or text. They grab attention and convey more information in a shorter time. Improved SEO: Embedding YouTube videos can boost your website’s SEO as videos keep visitors on your page longer. Mobile-Friendly Content: Video sliders are responsive and look great on all devices, ensuring a seamless shopping expe...

How to Create a Before-and-After Image Slider in Shopify

 A before-and-after image slider is a great feature to showcase visual transformations, whether it's for product makeovers, design changes, or customer testimonials. This feature can add an interactive touch to your Shopify store, helping to engage visitors and highlight the value of your offerings. In this guide, we’ll walk you through the steps to create a before-and-after image slider in Shopify. Before diving into the technical setup, ensure you have the before and after images ready: Use images of the same size for smooth sliding. Optimize images for web use to improve loading speed. 1. Access the Theme Code Editor Log in to your Shopify admin panel. Go to Online Store > Themes . Click Actions > Edit Code . Full Code <style> .cs-before-after-content--{{ section.id }} img { max-width: 100%; height: auto; vertical-align: bottom; } ...