PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
dokan-lite
/
templates
/
orders
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly $img_kses = apply_filters( 'dokan_product_image_attributes', array( 'img' => array( 'alt' => array(), 'class' => array(), 'height' => array(), 'src' => array(), 'width' => array(), ), ) ); ?> <tr class="item <?php if ( ! empty( $class ) ) echo esc_attr( $class ); ?>" data-order_item_id="<?php echo esc_attr( $item_id ); ?>"> <td class="thumb" width="10%"> <?php if ( $_product ) : ?> <a href="<?php echo esc_url( get_permalink( dokan_get_prop( $_product, 'id' ) ) ); ?>"> <?php echo wp_kses( $_product->get_image( 'shop_thumbnail', array( 'title' => '' ) ), $img_kses ); ?> </a> <?php else : ?> <?php echo wp_kses_post( woocommerce_placeholder_img( 'shop_thumbnail' ) ); ?> <?php endif; ?> </td> <td class="name" width="65%"> <?php if ( $_product ) : ?> <a target="_blank" href="<?php echo esc_url( get_permalink( dokan_get_prop( $_product, 'id' ) ) ); ?>"> <?php echo esc_html( $item['name'] ); ?> </a> <?php else : ?> <?php echo esc_html( $item['name'] ); ?> <?php endif; ?> <small><?php if ( $_product && $_product->get_sku() ) echo '<br>' . esc_html( $_product->get_sku() ); ?></small> <?php global $wpdb; if ( $metadata = dokan_get_metadata( $order, $item_id ) ) { foreach ( $metadata as $meta ) { // Skip hidden core fields if ( in_array( $meta['meta_key'], apply_filters( 'woocommerce_hidden_order_itemmeta', array( '_qty', '_tax_class', '_product_id', '_variation_id', '_line_subtotal', '_line_subtotal_tax', '_line_total', '_line_tax', ) ) ) ) { continue; } // Skip serialised meta if ( is_serialized( $meta['meta_value'] ) ) { continue; } // Get attribute data if ( taxonomy_exists( wc_sanitize_taxonomy_name( $meta['meta_key'] ) ) ) { $term = get_term_by( 'slug', $meta['meta_value'], wc_sanitize_taxonomy_name( $meta['meta_key'] ) ); $meta['meta_key'] = wc_attribute_label( wc_sanitize_taxonomy_name( $meta['meta_key'] ) ); $meta['meta_value'] = isset( $term->name ) ? $term->name : $meta['meta_value']; } else { $meta['meta_key'] = apply_filters( 'woocommerce_attribute_label', wc_attribute_label( $meta['meta_key'], $_product ), $meta['meta_key'] ); } echo '<br /><strong>' . wp_kses_post( rawurldecode( $meta['meta_key'] ) ) . ':</strong> ' . wp_kses_post( make_clickable( rawurldecode( $meta['meta_value'] ) ) ); } } ?> </td> <?php do_action( 'woocommerce_admin_order_item_values', $_product, $item, absint( $item_id ) ); ?> <td width="1%"> <?php if ( isset( $item['qty'] ) ) echo esc_html( $item['qty'] ); ?> </td> <td class="line_cost" width="1%"> <?php if ( isset( $item['line_total'] ) ) { if ( isset( $item['line_subtotal'] ) && $item['line_subtotal'] != $item['line_total'] ) { echo wp_kses_post( '<del>' . wc_price( $item['line_subtotal'] ) . '</del> ' ); } echo wp_kses_post( wc_price( $item['line_total'], array( 'currency' => dokan_replace_func( 'get_order_currency', 'get_currency', $order ) ) ) ); } ?> </td> </tr>
[+]
..
[-] order-item-html.php
[edit]
[-] order-fee-html.php
[edit]
[-] order-download-permission-html.php
[edit]
[-] orders.php
[edit]
[-] listing.php
[edit]
[-] date-export.php
[edit]
[-] order-tax-html.php
[edit]
[-] orders-status-filter.php
[edit]
[-] details.php
[edit]
[-] downloadable.php
[edit]