- SGAnsweredthis detail picture
- MSAnsweredHello,
The item comments are for order purpose and only displayed on order/bill print. However those are saved in the `sma_sale_items` table. If you need to display them on receipt, you will need to edit the `themes/default/admin/views/pos/view.php` and add `$row->comment` in `foreach ($rows as $row) {` block something like below after line 161
```
if (!empty($row->comment)) {
echo '<tr><td colspan="2" class="no-border">' . $row->comment . '</td></tr>';
}
```
Thank you - SGAnsweredstill same i folow the instruction
- MSAnsweredHello,
I will show order item comment on the receipt in next update.
Thank you - MSAnsweredHello,
The line would look like as per diff screenshot attached.
What is your printing setting? - Login to Reply