PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-lite
/
templates
<?php /** * Dokan Sub Order Templates * * @since 2.4 * * @package dokan */ ?> <header> <h2><?php esc_html_e( 'Sub Orders', 'dokan-lite' ); ?></h2> </header> <div class="dokan-info"> <strong><?php esc_html_e( 'Note:', 'dokan-lite' ); ?></strong> <?php esc_html_e( 'This order has products from multiple vendors. So we divided this order into multiple vendor orders. Each order will be handled by their respective vendor independently.', 'dokan-lite' ); ?> </div> <table class="shop_table my_account_orders table table-striped"> <thead> <tr> <th class="order-number"><span class="nobr"><?php esc_html_e( 'Order', 'dokan-lite' ); ?></span></th> <th class="order-date"><span class="nobr"><?php esc_html_e( 'Date', 'dokan-lite' ); ?></span></th> <th class="order-status"><span class="nobr"><?php esc_html_e( 'Status', 'dokan-lite' ); ?></span></th> <th class="order-total"><span class="nobr"><?php esc_html_e( 'Total', 'dokan-lite' ); ?></span></th> <th class="order-actions"> </th> </tr> </thead> <tbody> <?php foreach ($sub_orders as $order_post) { $order = new WC_Order( $order_post->ID ); $item_count = $order->get_item_count(); ?> <tr class="order"> <td class="order-number"> <a href="<?php echo esc_url( $order->get_view_order_url() ); ?>"> <?php echo esc_html( $order->get_order_number() ); ?> </a> </td> <td class="order-date"> <time datetime="<?php echo esc_attr( date('Y-m-d', strtotime( dokan_get_date_created( $order ) ) ) ); ?>" title="<?php echo esc_attr( strtotime( dokan_get_date_created( $order ) ) ); ?>"><?php echo esc_html( date_i18n( get_option( 'date_format' ), strtotime( dokan_get_date_created( $order ) ) ) ); ?></time> </td> <td class="order-status" style="text-align:left; white-space:nowrap;"> <?php echo isset( $statuses['wc-' . dokan_get_prop( $order, 'status' )] ) ? esc_html( $statuses['wc-' . dokan_get_prop( $order, 'status' )] ) : esc_html( dokan_get_prop( $order, 'status' ) ); ?> </td> <td class="order-total"> <?php echo wp_kses_post( sprintf( _n( '%s for %s item', '%s for %s items', $item_count, 'dokan-lite' ), $order->get_formatted_order_total(), $item_count ) ); ?> </td> <td class="order-actions"> <?php $actions = array(); $actions['view'] = array( 'url' => $order->get_view_order_url(), 'name' => __( 'View', 'dokan-lite' ) ); $actions = apply_filters( 'dokan_my_account_my_sub_orders_actions', $actions, $order ); foreach( $actions as $key => $action ) { echo '<a href="' . esc_url( $action['url'] ) . '" class="button ' . sanitize_html_class( $key ) . '">' . esc_html( $action['name'] ) . '</a>'; } ?> </td> </tr> <?php } ?> </tbody> </table>
[+]
..
[-] upgrade-notice.php
[edit]
[+]
settings
[-] seller-search-form.php
[edit]
[-] store-header.php
[edit]
[-] sub-orders.php
[edit]
[+]
orders
[+]
account
[+]
products
[+]
widgets
[+]
admin-setup-wizard
[-] my-orders.php
[edit]
[-] store-toc.php
[edit]
[-] store-lists-loop.php
[edit]
[+]
login-form
[-] .templates.php
[edit]
[+]
withdraw
[-] store.php
[edit]
[-] store-sidebar.php
[edit]
[-] store-lists-filter.php
[edit]
[+]
global
[+]
dashboard
[+]
maps
[-] store-lists.php
[edit]
[+]
emails