BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
CTR
/
wp-content
/
themes
/
porto
/
woocommerce
/
myaccount
📤 Upload
📝 New File
📁 New Folder
Close
Editing: view-order.php
<?php /** * View Order * * Shows the details of a particular order on the account page. * * @version 10.1.0 */ defined( 'ABSPATH' ) || exit; if ( ! $order ) { return; } $notes = $order->get_customer_order_notes(); $porto_woo_version = porto_get_woo_version_number(); if ( version_compare( $porto_woo_version, '2.6', '<' ) ) { wc_print_notices(); } ?> <h3 class="account-sub-title d-none d-md-block mb-3 mt-2"><i class="porto-icon-package align-middle m-r-sm"></i><?php printf( esc_html__( 'Order #%s', 'woocommerce' ), esc_html( $order->get_order_number() ) ); ?></h3> <?php if ( version_compare( $porto_woo_version, '2.6', '>=' ) ) : ?> <div class="d-flex flex-wrap order-info m-b-xl m-t-xs p-t-lg"> <div class="order-item"> <?php esc_html_e( 'Order Number', 'woocommerce' ); ?> <mark class="font-weight-bold order-number"><?php echo esc_html( $order->get_order_number() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></mark> </div> <div class="order-item"> <?php esc_html_e( 'Status', 'woocommerce' ); ?> <mark class="font-weight-bold order-status text-primary text-uppercase"><?php echo wc_get_order_status_name( $order->get_status() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></mark> </div> <div class="order-item"> <?php esc_html_e( 'Date', 'woocommerce' ); ?> <mark class="font-weight-bold order-date"><?php echo wc_format_datetime( $order->get_date_created() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></mark> </div> <div class="order-item"> <?php esc_html_e( 'Total', 'woocommerce' ); ?> <mark class="font-weight-bold order-total"><?php echo wp_kses_post( $order->get_formatted_order_total() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></mark></div> <?php $order_item_totals = $order->get_order_item_totals(); if ( ! empty( $order_item_totals['payment_method'] ) ) : ?> <div class="order-item"> <?php esc_html_e( 'Payment method:', 'woocommerce' ); ?> <mark class="font-weight-bold order-status"><?php echo wp_kses_post( $order_item_totals['payment_method']['value'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></mark> </div> <?php endif; ?> </div> <?php else : ?> <p class="order-info alert alert-info m-b-lg"> <?php echo wp_kses_post( /** * Filter to modify order detiails status text. * * @param string $order_status The order status text. * * @since 10.1.0 */ apply_filters( 'woocommerce_order_details_status', sprintf( /* translators: 1: order number 2: order date 3: order status */ esc_html__( 'Order #%1$s was placed on %2$s and is currently %3$s.', 'woocommerce' ), '<mark class="order-number">' . $order->get_order_number() . '</mark>', // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped '<mark class="order-date">' . date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ) . '</mark>', // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped '<mark class="order-status">' . wc_get_order_status_name( $order->get_status() ) . '</mark>' // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ), $order ) ); ?> </p> <?php endif; ?> <?php if ( $notes ) : ?> <?php if ( version_compare( $porto_woo_version, '2.6', '<' ) ) : ?> <div class="featured-box align-left"> <div class="box-content"> <?php endif; ?> <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 function_exists( 'porto_shortcode_format_content' ) ? porto_shortcode_format_content( $note->comment_content ) : 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 if ( version_compare( $porto_woo_version, '2.6', '<' ) ) : ?> </div> </div> <?php endif; ?> <?php endif; ?> <?php do_action( 'woocommerce_view_order', $order_id ); ?>
Save
Cancel