HEX
Server: LiteSpeed
System: Linux linux31.centraldnserver.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: salamatk (1501)
PHP: 8.1.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/salamatk/www/wp-content/plugins/woodmart-plus/woocommerce/myaccount/view-order.php
<?php

/**
 * View Order
 *
 * Shows the details of a particular order on the account page.
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/view-order.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see     https://docs.woocommerce.com/document/template-structure/
 * @package WooCommerce\Templates
 * @version 3.0.0
 */

defined('ABSPATH') || exit;

$order = wc_get_order($order_id);
$notes = $order->get_customer_order_notes();
$steps = wplus_helper::get_setting('order_tracking_steps',[]);

?>


<div class="white_card--border_row">
	<div class="item gap-x">
		<a href="<?php echo esc_url(wc_get_endpoint_url('orders'));  ?>" class="btn link">
			<svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewBox="0 0 16 17" fill="none">
				<path d="M5.93945 13.78L10.2861 9.43333C10.7995 8.92 10.7995 8.08 10.2861 7.56667L5.93945 3.22" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path>
			</svg>
			<p><?php esc_html_e('بازگشت', 'woodmartplus'); ?></p>
		</a>
	</div>
	<div class="item">
		<div class="space_between--wrap_gap">
			<div class="gap-x">
				<svg class="text_danger" xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none">
					<path d="M8.33268 3L6.66602 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
					<path d="M13.3327 3L11.666 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
					<path d="M2.91602 8H17.916" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
					<path d="M2.08398 13H17.084" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
				</svg>
				<p class="text_darkgray">
					<?php esc_html_e('شماره سفارش', 'woodmartplus'); ?>: <span class="text_black"><?php echo $order->get_order_number(); ?></span>
				</p>
			</div>
			<div class="gap-x">
				<svg class="text_danger" xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none">
					<path d="M8.33268 3L6.66602 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
					<path d="M13.3327 3L11.666 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
					<path d="M2.91602 8H17.916" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
					<path d="M2.08398 13H17.084" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
				</svg>
				<p class="text_darkgray">
					<?php esc_html_e('تاریخ سفارش', 'woodmartplus') ?>: <span class="text_black"><?php echo wc_format_datetime($order->get_date_created()) ?></span>
				</p>
			</div>
			<div class="gap-x">
				<svg class="text_danger" xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none">
					<path d="M8.33268 3L6.66602 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
					<path d="M13.3327 3L11.666 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
					<path d="M2.91602 8H17.916" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
					<path d="M2.08398 13H17.084" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
				</svg>
				<p class="text_darkgray">
					<?php esc_html_e('وضعیت سفارش', 'woodmartplus') ?>: <span class="text_black"><?php echo wc_get_order_status_name($order->get_status()) ?></span>
				</p>
			</div>
		</div>
	</div>
</div>


<?php $order_settings = wplus_helper::get_setting('order_tracking'); ?>
<?php if ( wplus_helper::get_setting('enable-order-tracking') && isset($order_settings['enable_detial_myaccount']) && $order_settings['enable_detial_myaccount']): ?>
	<div class="order-status white_card--border_row">
		<h2><?php esc_html_e('وضعیت سفارش', 'woodmartplus'); ?></h2>
		<div class="status-timeline" data-status="<?php echo $order->get_status(); ?>">

		<?php if( $steps ): ?>
			<?php foreach( $steps as $step ):?>
				<?php 
					
					$status = isset( $step['step_status'] ) && !empty( $step['step_status'] ) ? $step['step_status'] : [];
					$new_status ='';
					if( $status )
					{
						$new_status = str_replace('wc-','',$status);
					}
					?>
				<div class="status-step" data-step="<?php echo $new_status ? implode(',',$new_status) : '' ?>">
						<div class="step-icon">
							<?php if( $step['step_image'] ): ?>

							<?php $img_id = $step['step_image']; ?>
							<?php
								$image = '';
								if( $img_id )
								{
									$img_src = wp_get_attachment_image_src($img_id, 'thumbnail');
									if( isset( $img_src[0] ) )
									{
										$image = $img_src[0];
									}
								}
							?> 
							<img class="img-responsive" src="<?php echo isset($image) ? $image : '' ?>">
							<?php else: ?>
								<svg viewBox="0 0 24 24" width="24" height="24">
									<path fill="currentColor" d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z" />
								</svg>
							<?php endif; ?>
						</div>
					<div class="step-label"><?php echo isset( $step['step_title'] ) && !empty( $step['step_title'] ) ? $step['step_title'] : '' ?></div>
					<div class="tooltip"><?php echo isset( $step['step_tooltip'] ) && !empty( $step['step_tooltip'] ) ? $step['step_tooltip'] : '' ?></div>
				</div>
			<?php endforeach; ?>
		<?php endif; ?>

		</div>
	</div>
<?php endif; ?>

<?php if ($notes) : ?>
	<h2><?php esc_html_e('Order updates', 'woocommerce'); ?></h2>
	<ol class="woocommerce-OrderUpdates commentlist notes">
		<?php foreach ($notes as $note) : ?>
			<li class="woocommerce-OrderUpdate comment note">
				<div class="woocommerce-OrderUpdate-inner comment_container">
					<div class="woocommerce-OrderUpdate-text comment-text">
						<p class="woocommerce-OrderUpdate-meta meta"><?php echo date_i18n(esc_html__('l jS \o\f F Y, h:ia', 'woocommerce'), strtotime($note->comment_date)); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 
																		?></p>
						<div class="woocommerce-OrderUpdate-description description">
							<?php echo wpautop(wptexturize($note->comment_content)); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 
							?>
						</div>
						<div class="clear"></div>
					</div>
					<div class="clear"></div>
				</div>
			</li>
		<?php endforeach; ?>
	</ol>
<?php endif; ?>

<?php do_action('woocommerce_view_order', $order_id); ?>