MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/themes/ri-colias/woocommerce/order/order-details.php
<?php
/**
 * Order details
 *
 * @author  WooThemes
 * @package WooCommerce/Templates
 * @version 2.4.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$order = wc_get_order( $order_id );
?>
<div class="panel panel-default">
    <div class="panel-heading">
        <header class="title clearfix">
            <h3 class="pull-left panel-title"><?php esc_html_e( 'Order Details', 'woocommerce' ); ?></h3>
        </header>
    </div>
    <div class="panel-body">
        <table class="shop_tables order_details">
        <thead>
            <tr>
                <th class="product-name"><?php esc_html_e( 'Product', 'woocommerce' ); ?></th>
                <th class="product-total"><?php esc_html_e( 'Total', 'woocommerce' ); ?></th>
            </tr>
        </thead>
        <tbody>
            <?php
                foreach( $order->get_items() as $item_id => $item ) {
                    wc_get_template( 'order/order-details-item.php', array(
                        'order'   => $order,
                        'item_id' => $item_id,
                        'item'    => $item,
                        'product' => apply_filters( 'woocommerce_order_item_product', $order->get_product_from_item( $item ), $item )
                    ) );
                }
            ?>
            <?php do_action( 'woocommerce_order_items_table', $order ); ?>
        </tbody>
        <tfoot>
            <?php
                foreach ( $order->get_order_item_totals() as $key => $total ) {
                    ?>
                    <tr>
                        <th scope="row"><?php echo $total['label']; ?></th>
                        <td><?php echo $total['value']; ?></td>
                    </tr>
                    <?php
                }
            ?>
        </tfoot>
    </table>
    </div>
</div>

    <?php do_action( 'woocommerce_order_details_after_order_table', $order ); ?>

    <?php wc_get_template( 'order/order-details-customer.php', array( 'order' =>  $order ) ); ?>