Change the layout of the "Receipt for payment"

Hi guys. I am trying to change the layout of the “Receipt for payment” I need to print, after doing a Checkout payment. I like to change the order of City and Zip code. I want the order to be “Zip City” and not the default “City Zip” order. I also like to add a little style to the layout if possible. Any ideas how to do that?

you can tweak the file openemr/interface/patient_file/front_payment.php

there’s been recent work for a future release which can be seen here openemr/front_payment.php at master · openemr/openemr · GitHub

Hello @slente,
For changing the order of ZIP and city after doing a checkout payment,modify file interface/patient_file/pos_checkout.php replace the line no 205 with the following line:

<?php echo text($patdata['postal_code']) . ', ' . text($patdata['city']) . ' ' . text($patdata['state']) ?>

Thanks,
ViSolve

@stephenwaite & @visolveemr: Thank you very much for your replies!!!
@visolveemr: That was exactly what I wa looking for. Thank you!!!