I have this code in a template
<div class="item #id">
<div class="nr">#nr</div>
<div class="customer_firstname">#customer_firstname</div>
<div class="timi">#timi</div>
<div class="name">#name</div>
<div class="product_options">#product_options</div>
</div>
I am trying to get an order id into the class of the parent div - however #id parses as
<span class=" hdr_show"="">2,214">
When all I want is 2214
Is there any way to tell the template to skip the additional span for just that one element - something like ##id and I would just get the raw data in the template?
Regards,
Maron