All things Shopify and commerce
As the title says how can I add related items to cart drawer? I am using spotlight theme
Hi,
Identify cart drawer section (something like cart-drawer.liquid or cart.liquid. ) and insert related products logic
Code example
{% for product in cart.items %}
{% assign recommendations = product.recommendations %}
{% if recommendations.size > 0 %}
<div class="related-products">
<h3>Related Products</h3>
<ul>
{% for recommendation in recommendations %}
<li>
<a href="{{ recommendation.url }}">
<img src="{{ recommendation.featured_image.src }}" alt="{{ recommendation.title }}">
<p>{{ recommendation.title }}</p>
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endfor %}
Use CSS for customization and enable product recommendations feature
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025