Hi,
What Philip meant is that with the new add to cart system these messages are not displayed on the listings.
If you want they with it, you would have to edit the file "add_to_cart_ajax" via the menu Display>views and add such code:
if($end_date > 0 && $end_date < $now) {
?>
<span class="hikashop_product_sale_end"><?php
echo JText::_('ITEM_NOT_SOLD_ANYMORE');
?></span>
<?php
}
// @TODO - Pre-order
//
if($start_date > 0 && $start_date > $now) {
?>
<span class="hikashop_product_sale_start"><?php
echo JText::sprintf('ITEM_SOLD_ON_DATE', hikashop_getDate($start_date, $this->params->get('date_format', '%d %B %Y')));
?></span>
<?php
}
after the line:
$extra_div_name = $this->params->get('extra_div_name', '');