from IRC

example: a view that lists node fields grouped by taxonomy term
- the goal is to display the term description below each term
- a solution is rewriting the output (something as simple as: [name]
[description])
- the problem is grouping doesn't respect rewriting

reminder:
" is starting to realize that for rewriting to really work right, we need to take field rendering away from the style and just give the style an array of rendered fields."

Comments

dboulet’s picture

Having the same problem, the group headings aren't rewritten.

mariagwyn’s picture

Similary problem. The rewrite respects html but not field tokens. for example:

This code, which rewrites the 'name' field used for grouping purposes (and below the other relevant fields),

<span class="term-level-[depth]">[name]</span>[lineage]

produces this html:

<span class="term-level-">Call for Papers</span>"[lineage]"

Essentially, the fields are not being incorporated into the group-by.

Any way to address this?

thanks,
Maria

merlinofchaos’s picture

Status: Active » Closed (duplicate)
mariagwyn’s picture

yup, that patch worked. Thanks.