Adding Dimensions to Product Page

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
webmaz
Lieutenant (LT)
Lieutenant (LT)
Posts: 52
Joined: Wed Apr 14, 2010 3:57 pm

Adding Dimensions to Product Page

Post by webmaz » 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?

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

Post Reply