Order date
This commit is contained in:
parent
909bea5d02
commit
3ed47d9371
|
@ -127,7 +127,7 @@ function woocommmerce_dashboard_recent_orders() {
|
|||
|
||||
echo '
|
||||
<li>
|
||||
<span class="order-status '.sanitize_title($this_order->status).'">'.ucwords($this_order->status).'</span> <a href="'.admin_url('post.php?post='.$order->ID).'&action=edit">'.date_i18n('l jS \of F Y h:i:s A', strtotime($this_order->order_date)).'</a><br />
|
||||
<span class="order-status '.sanitize_title($this_order->status).'">'.ucwords($this_order->status).'</span> <a href="'.admin_url('post.php?post='.$order->ID).'&action=edit">'.get_the_time('l jS \of F Y h:i:s A', $order->ID).'</a><br />
|
||||
<small>'.sizeof($this_order->items).' '._n('item', 'items', sizeof($this_order->items), 'woothemes').' <span class="order-cost">'.__('Total:', 'woothemes') . ' ' . woocommerce_price($this_order->order_total).'</span></small>
|
||||
</li>';
|
||||
|
||||
|
|
Loading…
Reference in New Issue