Skip to content

Instantly share code, notes, and snippets.

@odessy
Last active June 25, 2024 16:22
Show Gist options
  • Save odessy/e9f8a292b143af38fa89a258e50430e8 to your computer and use it in GitHub Desktop.
Save odessy/e9f8a292b143af38fa89a258e50430e8 to your computer and use it in GitHub Desktop.
Product title split
<div class="product__block__title" style="--PB: 16px;">
<div class="product__headline">
<div class="product__title__wrapper">
<h1 class="product__title heading-size-4">
{% assign title = product.title | split: "|" %}
{{ title.first }}
<br>
{% if title.size == 2 %}
{{ title.last }}
{% endif %}
</h1>
</div>
</div>
</div>
{% assign title = product.title| strip_html | escape | split: "|" %}
{{ title.first }}
{% if title.size == 2 %}
<br>
{{ title.last }}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment