Quote Originally Posted by crazy_chris View Post
Guarantee:

<?php if (!empty(
$product_info->fields['products_guarantee'])) echo $product_info->fields['products_guarantee']; ?>
I personally had to change !empty to !is_null since I sometimes want "0" values to display and the new PHP considers "0" to be the same as empty.

-lindasdd