Last active
June 25, 2024 16:22
-
-
Save odessy/e9f8a292b143af38fa89a258e50430e8 to your computer and use it in GitHub Desktop.
Product title split
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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