File: /var/www/dinamo-shop/wp-content/themes/dinamo-shop/woocommerce/myaccount/view-order.php
<?php
/**
* View Order
*
* Shows the details of a particular order on the account page.
*/
defined( 'ABSPATH' ) || exit;
$notes = $order->get_customer_order_notes();
?>
<div class="checkout">
<section class="section">
<div class="container">
<h2><?php _e( 'Narudžba', 'dinamo_shop' ); ?> #<?php echo $order->get_order_number(); ?></h2>
<p class="mb-0"><?php _e( 'STATUS', 'dinamo_shop' ); ?>: <?php echo wc_get_order_status_name( $order->get_status() ); ?></p>
<?php do_action( 'woocommerce_view_order', $order_id ); ?>
</div>
</section>
</div>