Display Collection Title On Each Product Page with link

Hello!

I am using ella theme for my store. I am trying to display collection title on each product page from where is added:

Acasa / Cravata Ingusta De Lana Galbena Pentru Barbati

to

Acasa / Cravate Barbati / Cravata Ingusta De Lana Galbena Pentru Barbati

Home link / Category link / Product title link

Please guide me.

https://www.cravatepedia.ro/products/cravata-ingusta-de-lana-galbena-pentru-barbati

my Snippet > breadcrumb.liquid is

{% comment %}
Documentation - http://docs.shopify.com/support/your-website/navigation/creating-a-breadcrumb-navigation
{% endcomment %}

{% unless template == ‘index’ %}

{% if settings.display_breadcrumb %} {{ 'general.breadcrumbs.home' | t }} {% if template contains 'product' %}

{% if collection %}


{% if collection.handle %}
{% capture url %}{{collection.url}}{% endcapture %}
{% if settings.enable_multilang %}
{{ collection.title | split: ‘|’ | first | link_to: url }}
{{ collection.title | split: ‘|’ | last | link_to: url }}
{% else %}
{{ collection.title | split: ‘|’ | first | link_to: url }}
{% endif %}
{% endif %}
{% endif %}

{% if settings.enable_multilang %} {{ product.title | split: '|' | first }} {{ product.title | split: '|' | last }} {% else %} {{ product.title | split: '|' | first }} {% endif %}

{% elsif template contains ‘collection’ and collection.handle %}
{% if current_tags %}


{% capture url %}{{collection.url}}{% endcapture %}

{% if settings.enable_multilang %}
{{ collection.title | split: ‘|’ | first | link_to: url }}
{{ collection.title | split: ‘|’ | last | link_to: url }}
{% else %}
{{ collection.title | split: ‘|’ | first | link_to: url }}
{% endif %}

{% assign bd_tags = current_tags | join: " + " %}
{% if settings.enable_multilang %}
{{ bd_tags | split: ‘|’ | first }}
{{ bd_tags | split: ‘|’ | last }}
{% else %}
{{ bd_tags | split: ‘|’ | first }}
{% endif %}

{% else %}

{% if settings.enable_multilang %} {{ collection.title | split: '|' | first | link_to: url }} {{ collection.title | split: '|' | last | link_to: url }} {% else %} {{ collection.title | split: '|' | first | link_to: url }} {% endif %}

{% endif %}

{% elsif template == ‘cart’ %}



<span {% if settings.enable_multilang %}data-translate=“general.breadcrumbs.cart”{% endif %}>{{ ‘general.breadcrumbs.cart’ | t }}

{% elsif template == ‘article’ %}

{% if settings.enable_multilang %}
{{ blog.title | split: ‘|’ | first | link_to: blog.url }}
{{ blog.title | split: ‘|’ | last | link_to: blog.url }}
{% else %}
{{ blog.title | split: ‘|’ | first | link_to: blog.url }}
{% endif %}

{% if settings.enable_multilang %}
{{ article.title | split: ‘|’ | first }}
{{ article.title | split: ‘|’ | last }}
{% else %}
{{ article.title | split: ‘|’ | first }}
{% endif %}

{% elsif template contains ‘page’ %}

{% if settings.enable_multilang %}
{{ page.title | split: ‘|’ | first }}
{{ page.title | split: ‘|’ | last }}
{% else %}
{{ page.title | split: ‘|’ | first }}
{% endif %}

{% else %}


{% if settings.enable_multilang %}
{{ page_title | split: ‘|’ | first }}
{{ page_title | split: ‘|’ | last }}
{% else %}
{{ page_title | split: ‘|’ | first }}
{% endif %}
{% endif %}
{% endif %}

{% endunless %}

@Dalica

this work only

https://shopify.github.io/liquid-code-examples/example/breadcrumb-navigation