Cant see the coupon image when I open the print window
Ques: I dont know why i cant see the coupon image when i open the print window ?
Ans: In file components/com_coupon/controllers/coupons.php Replace code on line no.407
if(!empty($item->img) and is_file(JPATH_SITE.’/images/coupons/’.$item->img))
$image = ‘images/coupons/’.$item->img;
else
$image = ‘components/com_coupon/assets/images/no_image_th.jpg’;
with this
if(!empty($item->img) and is_file(JPATH_SITE.’/images/coupons/’.$item->img))
$image = JURI::root().’images/coupons/’.$item->img;
else
$image = JURI::root().’components/com_coupon/assets/images/no_image_th.jpg’;