Adding Dimensions to Product Page
Posted: Wed Sep 26, 2012 12:42 pm
Is it possible to add the Dimension fields, length, width and height to display on product pages?
Would something like this work on the Show Product 1 Scriptlet?
Would something like this work on the Show Product 1 Scriptlet?
Code: Select all
#if ($Product.Length != 0)
<span style="padding-left:9px;"><strong>Size:</strong> $Product.Length.Name </span>
#end
#if ($Product.Width != 0)
<span>x $Product.Width.Name </span>
#end
#if ($Product.Height != 0)
<span>x $Product.Height.Name </span>
#end