Hi Guys,
I'm trying to add an extra field in my quick_view.tpl file.
Here is what I am trying to use but it doesn't seem to want to work. Does anyone have any tips on how to get this to show the info from the array please?
Code:
<div class='grid_6'><b>Quantity:</b></div><div class='grid_6'>{$extra_fields.field_value}</div><div class='clearing'></div>
Here is what the debug console shows for the data i'm looking for:
Code:
{$extra_fields} Array (37)
0 => Array (9)
fieldid => "2"
provider => "1"
field => "Product Description"
value => ""
active => "Y"
orderby => "1"
service_name => "SERVICE_NAME01"
field_value => "Case of 500 items"
is_value => "Y"
This is what i'm trying to output
Code:
field_value => "Case of 500 items"
Any help would be very much appreicated