Closed (fixed)
Project:
Belgrade
Version:
3.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Nov 2025 at 13:38 UTC
Updated:
12 Feb 2026 at 09:54 UTC
Jump to comment: Most recent
The checkout completion message template displays the order id instead of the order number:
<span class="checkout-completion__order-number">#{{ order_entity.id() }}</span>
To fix it replace id() with get('order_number').value:
<span class="checkout-completion__order-number">#{{ order_entity.get('order_number').value }}</span>
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
majmunbog commentedComment #5
sumi commentedTested and confirmed it is now fixed.
Comment #7
majmunbog commentedComment #9
pozi commentedActually it should be:
<span class="checkout-completion__order-number">#{{ order_entity.getOrderNumber() }}</span>Comment #10
majmunbog commentedComment #12
majmunbog commentedThanks for catching this @pozi.
Comment #14
majmunbog commented