
I added the Order Status to the Order View since that seemed missing for customers who complete checkout and want to go to the order status page but it doesn't show the status.
In order to accomplish this, \tastyigniter\main\controllers\account\Orders.php in line 122 (inside view())
[php]$data['order_status'] = $result['status_name'];[/php]
And add the table rows in \tastyigniter\main\views\themes\CORRESPONDINGCHILDTHEME\account\orders_view.php:
[php] <tr>
<td><b>Order Status</b></td>
<td><?php echo $order_status; ?></td>
</tr>[/php]