On my product.liquid I am pulling my related-products.liquid segment of code:
{% if collection and collection.products_count > 1 %}
<div class="row">
<div class="span12">
<h2 class="collection-title">Related products</h2>
</div>
</div>
<div class="row products">
{% assign current_product = product %}
{% assign current_product_found = false %}
{% for product in collection.products limit: 5 %}
{% if product.handle == current_product.handle %}
{% assign current_product_found = true %}
{% else %}
{% unless current_product_found == false and forloop.last %}
{% include 'product-loop-shop' with collection.handle %}
{% endunless %}
{% endif %}
{% endfor %}
</div>
{% endif %}
When I first click on a product from my home page the related products display, and when I click on one of the related products the whole related products block at bottom does not appear.
If I'm leaving out something please let me know.