worked it out myself, probably not the best way but seems to work.
in product_listing.php i used:
PHP Code:
if (zen_get_products_special_price($listing->fields['products_id']) > '10') {
$freedelicon = '<img src="freedel.png" style="float:right" width="50" alt="Free Delivery" />';
} else {
$freedelicon = '';
}
and in the product_info_display.php I used:
PHP Code:
<?php if (zen_get_products_special_price((int)$_GET['products_id']) > 10) { echo '<img src="freedel.png" width="70" alt="Free Delivery" />'; } ?>
any enhancements to this would be appreciated