How To Add Order # At Order Confirmation Page

Dear Support

I want to add ORDER # at checkout_complete page after this message

Congratulations! Your order has been successfully placed.


Order checkout complete page link :

index.php?dispatch=checkout.complete&order_id=12032

For reference see this link for image


https://ibb.co/CmxYGZs



Thanks

orderconfirm.PNG

I found here a way to do what you want (the order # will be above the "Congratulations")

Templatesresponsive / templates / views / orders / details.tpl

find at the bottom

{capture name="mainbox_title"}
    {__("order")} #{$order_info.order_id}
    ({$order_info.timestamp|date_format:"`$settings.Appearance.date_format`, `$settings.Appearance.time_format`"})
    {__("status")}: {include file="common/status.tpl" status=$order_info.status display="view" name="update_order[status]"}
{/capture}

and here is where you want to make the change

Templatesresponsive / templates / views / checkout / complete.tpl

find this at the bottom

{capture name="mainbox_title"}{__("order")}{/capture}

and change to

{capture name="mainbox_title"}
    {__("order")} #{$order_info.order_id}
{/capture}

Your checkout complete page will now be like this

Order #101

Congratulations! Your order has been successfully placed.