Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on a new Shopify template for my store. I'm trying to add up the number of chars in my title, and the number of chars in my description. Subtract this total from 200, and use the result in my truncate.

(it's because I want to get the same number of chars in each box)

I thought the below code would work.... The capture bit works (nb: if my total chars = 204, the result is 4) but it seems that truncate can't work off a variable?

Thanks in advance,

Kind regards, Rob

 {% capture truncateBy %}
 {{ product.title.size | plus: product.description.size  | minus: 200 }}
 {% endcapture %}

 <p>{{ product.description | strip_html | replace: '&nbsp;', ' ' | truncate: truncateBy }}</p>
share|improve this question

1 Answer

up vote 3 down vote accepted

Your code seems to work for me. In what way does it not work? Does it show an error, the whole description, or "..."?

An alternative method you could try is to use actual variable assignment rather than capture:

{% assign truncateBy = product.title.size | plus: product.description.size | minus: 200 %}

Edit: Truncate will truncate to the given number of characters, so if you only want 200 characters, then you can just use that constant directory as an argument to truncate:

<p>{{ product.description | strip_html | replace: '&nbsp;', ' ' | truncate: 200 }}</p>

See the documentation of the truncate filter for details.

share|improve this answer
Hi Dylan, Thanks - I'm getting the same result when using your code... it's very bizarre.... as I get more than 200 chars... I've looked at the source, and there are no hard spaces etc which could be causing a miscount.... Will it see &amp; as 5 chars? That could be it... – Rob Jun 8 '12 at 16:43
Oh, you just want 200 characters. Try <p>{{ product.description | strip_html | replace: '&nbsp;', ' ' | truncate: 200 }}</p> – Dylan Smith Jun 8 '12 at 16:51
Hi Dylan, yep - but I want 200 characters including the description and title... that's where I'm having trouble... I put them together, minus 200... and use the result to truncate... but it doesnt seem to be working. – Rob Jun 8 '12 at 20:10
1  
What about {{ product.title | append: ' - ' | append: product.description | strip_html | replace:'&nbsp;', ' ' | truncate: 200 }}, or you could use capture to concatenate the title and description. If you never want to truncate the title, then you could calculate truncateBy as {% assign truncateBy = 200 | minus: product.title.size %} – Dylan Smith Jun 8 '12 at 21:45
{% assign truncateBy = 200 | minus: product.title.size %} is a great solution - thanks :) – Rob Jun 11 '12 at 22:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.