I want:
Features: coloured, proof, minted.
Not:
Features : Mint Marked
Features : Certified
Features : Proof
Features : Legal Tender
Thanks.
This can be done with a bit of tricky code. We need to keep track of the previous specific processed, and start a new line when this changes.
<p>
[%item_specifics id:'[@sku@]'; %]
[%param *body%]
[%if [@^last_specific@] eq [@itmspec_id@] %]
, [@itmspecval_value@]
[%else%]
[%set [@^last_specific@] = [@itmspec_id@] /%]
</p><p>[@itmspec_name@]: [@itmspecval_value@]
[%/if%]
[%/param%]
[%/item_specifics%]
</p>
Thanks Erik, that works a treat! 😊