• Resolved mowlman

    (@mowlman)


    I would like to print the Order Number in the Top right corner of the printed page.

    I do have print-content.php and print-order.php overridden within my child theme.

    trying to figure out the best way to get the order printed at the top

Viewing 1 replies (of 1 total)
  • Hi @mowlman,

    In order to achieve the mentioned requirement, you will need to use the below added html at the top of print-content.php file before the ‘order-branding’ div.

    <div style="float:right">
        <h1>Order #<?php echo $order->get_id() ?></h1>
    </div>

    Please let me know whether the provided information helped you to achieve your requirement.

    Regards,
    Komal Maru

Viewing 1 replies (of 1 total)
  • The topic ‘Print Order Number in top right corner’ is closed to new replies.