Hello,
We can add a trigger if you want to have a custom plugin which would override the default values.
With the current version, the easier would be to edit the "components/com_hikamarket/views/discountmarket/view.html.php" and change the lines
if(!empty($pageInfo->filter->type) && in_array($pageInfo->filter->type, array('discount', 'coupon'))) {
$filters['discount_type'] = 'discount.discount_type = ' . $db->Quote($pageInfo->filter->type);
}
if($pageInfo->filter->published >= 0) {
$filters['published'] = 'discount.discount_published = ' . ($pageInfo->filter->published ? '1' : '0');
}
You can force the values to always load the published coupons.
Regards,