Skip to main content

Posts

Showing posts from 2024

Shopify- How to show related products using meta fields without app

   Shopify- How to show related products using meta fields without app   to show related products or custom product list within single product page, copy the below code and paste it in your blade template or custom liquid file and replace "related_products" with your custom meta field key.   <div class="related-products"> {% assign related_products = product.metafields.custom.related_products.value %} <div class="related-products">   <h3>Related Products</h3>   <div class="related-products-list"> {% for recommended in related_products %} <div class="related-product">           <a href="{{ recommended.url }}" class="related-product-link">             <div class="related-product-image">               {% if recommended.featured_image %}                 <img src="{{ recommended.featured_image.src | img_url: 'medium' }}" alt="{{ recommende