Hello,
Search for {{ product.title }} in product.liquid under Templates or under sections or maybe be it's under snippets depends on the structure of the theme you are using.
Once you find it replace it with
{% assign title_array = product.title | split: ". " %}
{{ title_array .first }} <!--- this is first line of title -->
{{ title_array .last}} <!-- this is second line of html -->
Arrange code as you want in html and it will done.
Note: In above code I use (.) dot as a identifier to split the title, in any product if you don't have (.) dot it will not work.
Thanks
User | Count |
---|---|
551 | |
208 | |
125 | |
83 | |
44 |