Skip to content

Commit

Permalink
Update Payment Instructions header
Browse files Browse the repository at this point in the history
  • Loading branch information
gpressutto5 committed Feb 27, 2025
1 parent b37ada3 commit 61d44f5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion includes/class-wc-payments-order-success-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@ public function maybe_render_multibanco_payment_instructions( $order_id ) {
<img src="<?php echo esc_url_raw( plugins_url( 'assets/images/payment-methods/multibanco-instructions.svg', WCPAY_PLUGIN_FILE ) ); ?>" alt="<?php esc_attr_e( 'Multibanco', 'woocommerce-payments' ); ?>">
</div>
<div class="payment-details">
<div class="payment-header"><?php echo $formatted_order_total; ?></div>
<div class="payment-header">
<?php
/* translators: %s: order number */
printf( esc_html__( 'Order #%s', 'woocommerce-payments' ), $order->get_order_number() );
?>
</div>
<div class="payment-expiry">
<?php
printf(
Expand Down

0 comments on commit 61d44f5

Please sign in to comment.