Last active
December 7, 2022 14:14
-
-
Save zakirsajib/996e6722900552ccd81ec89839700842 to your computer and use it in GitHub Desktop.
Shopify liquid code to split your description/content into two blocks.
This file contains 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="collection_header_block"> | |
{{ collection.description | split: '---' | first }} | |
</div> | |
<div class="collection_footer_block"> | |
{{ collection. description | split: '---' | last }} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment