Dailylot Go to your local Foodomaa print server folder... open entity/FoodomaaThermalPrinter.php file
Replace this code on line 171
$this->printer->setEmphasis(false);
$this->printer->feed();
to
$this->printer->setEmphasis(false);
$this->printer->text($data->order->payment_mode)
$this->printer->setEmphasis(true);
if (!empty($data->order->order_comment) {
$this->printer->text($data->order->order_comment)
}
$this->printer->setEmphasis(false);
$this->printer->feed();
This should work surely.