"; $columns["thumb"] = __("Thumb", 'woothemes'); $columns["id"] = __("ID", 'woothemes'); $columns["title"] = __("Name", 'woothemes'); $columns["parent"] = __("Parent Product", 'woothemes'); return $columns; } add_filter('manage_edit-product_variation_columns', 'woocommerce_edit_variation_columns'); function woocommerce_custom_variation_columns($column) { global $post; $product = &new woocommerce_product($post->ID); switch ($column) { case "thumb" : if (has_post_thumbnail($post->ID)) : echo get_the_post_thumbnail($post->ID, 'shop_tiny'); endif; break; case "id" : echo '#'.$post->ID; break; case "parent" : if ($post->post_parent) : $parent = get_post( $post->post_parent ); echo '#'.$parent->ID.' — '.$parent->post_title.''; endif; break; } } add_action('manage_product_variation_posts_custom_column', 'woocommerce_custom_variation_columns', 2); function woocommerce_edit_product_columns($columns){ $columns = array(); $columns["cb"] = ""; $columns["thumb"] = __("Thumb", 'woothemes'); $columns["title"] = __("Name", 'woothemes'); $columns["product_type"] = __("Type", 'woothemes'); $columns["sku"] = __("ID/SKU", 'woothemes'); $columns["product_cat"] = __("Category", 'woothemes'); $columns["product_tags"] = __("Tags", 'woothemes'); $columns["visibility"] = __("Visibility", 'woothemes'); $columns["featured"] = __("Featured", 'woothemes'); if (get_option('woocommerce_manage_stock')=='yes') : $columns["is_in_stock"] = __("In Stock?", 'woothemes'); $columns["inventory"] = __("Inventory", 'woothemes'); endif; $columns["price"] = __("Price", 'woothemes'); return $columns; } add_filter('manage_edit-product_columns', 'woocommerce_edit_product_columns'); function woocommerce_custom_product_columns($column) { global $post; $product = &new woocommerce_product($post->ID); switch ($column) { case "thumb" : if (has_post_thumbnail($post->ID)) : echo get_the_post_thumbnail($post->ID, 'shop_tiny'); endif; break; case "summary" : echo $post->post_excerpt; break; case "price": echo $product->get_price_html(); break; case "product_cat" : echo get_the_term_list($post->ID, 'product_cat', '', ', ',''); break; case "product_tags" : echo get_the_term_list($post->ID, 'product_tag', '', ', ',''); break; case "sku" : if ( $sku = get_post_meta( $post->ID, 'SKU', true )) : echo '#'.$post->ID.' - SKU: ' . $sku; else : echo '#'.$post->ID; endif; break; case "featured" : $url = wp_nonce_url( admin_url('admin-ajax.php?action=woocommerce-feature-product&product_id=' . $post->ID) ); echo ''; if ($product->is_featured()) echo 'yes'; else echo 'no'; echo ''; break; case "visibility" : if ( $this_data = $product->visibility ) : echo $this_data; else : echo ''; endif; break; case "is_in_stock" : if ( !$product->is_type( 'grouped' ) && $product->is_in_stock() ) echo 'yes'; else echo ''; break; case "inventory" : if ( $product->managing_stock() ) : echo $product->stock.' in stock'; else : echo ''; endif; break; case "product_type" : echo ucwords($product->product_type); break; case "id" : echo '#'.$post->ID; break; } } add_action('manage_product_posts_custom_column', 'woocommerce_custom_product_columns', 2); function woocommerce_edit_order_columns($columns){ $columns = array(); $columns["cb"] = ""; $columns["order_status"] = __("Status", 'woothemes'); $columns["order_title"] = __("Order", 'woothemes'); $columns["customer"] = __("Customer", 'woothemes'); $columns["billing_address"] = __("Billing Address", 'woothemes'); $columns["shipping_address"] = __("Shipping Address", 'woothemes'); $columns["billing_and_shipping"] = __("Billing & Shipping", 'woothemes'); $columns["total_cost"] = __("Order Cost", 'woothemes'); return $columns; } add_filter('manage_edit-shop_order_columns', 'woocommerce_edit_order_columns'); function woocommerce_custom_order_columns($column) { global $post; $order = &new woocommerce_order( $post->ID ); switch ($column) { case "order_status" : echo sprintf( __('%s', 'woothemes'), sanitize_title($order->status), $order->status ); break; case "order_title" : echo ''.sprintf( __('Order #%s', 'woothemes'), $post->ID ).''; echo ''; break; case "customer" : if ($order->user_id) $user_info = get_userdata($order->user_id); ?>
ID.'">#'.$user_info->ID.' – '; if ($user_info->first_name || $user_info->last_name) echo $user_info->first_name.' '.$user_info->last_name; else echo $user_info->display_name; echo ''; else : _e('Guest', 'woothemes'); endif; ?>
billing_email) : ?>
billing_email; ?>
billing_phone) : ?>
billing_phone; ?>
'.$order->billing_first_name . ' ' . $order->billing_last_name; if ($order->billing_company) echo ', '.$order->billing_company; echo '
'; echo ''.$order->formatted_billing_address.''; break; case "shipping_address" : if ($order->formatted_shipping_address) : echo ''.$order->shipping_first_name . ' ' . $order->shipping_last_name; if ($order->shipping_company) : echo ', '.$order->shipping_company; endif; echo '
'; echo ''.$order->formatted_shipping_address.''; else : echo '–'; endif; break; case "billing_and_shipping" : ?>
payment_method; ?>
shipping_method; ?>
order_shipping>0) : ?>get_total_tax()>0) : ?>order_discount>0) : ?>
order_subtotal); ?>
order_shipping); ?>
get_total_tax()); ?>
order_discount); ?>
order_total); ?>
Pending ('.$woocommerce_orders->pending_count.')'; $views['onhold'] = 'On-Hold ('.$woocommerce_orders->on_hold_count.')'; $views['processing'] = 'Processing ('.$woocommerce_orders->processing_count.')'; $views['completed'] = 'Completed ('.$woocommerce_orders->completed_count.')'; $views['cancelled'] = 'Cancelled ('.$woocommerce_orders->cancelled_count.')'; $views['refunded'] = 'Refunded ('.$woocommerce_orders->refunded_count.')'; if ($pending || $onhold || $processing || $completed || $cancelled || $refunded) : $views['all'] = str_replace('current', '', $views['all']); endif; unset($views['publish']); if (isset($views['trash'])) : $trash = $views['trash']; unset($views['draft']); unset($views['trash']); $views['trash'] = $trash; endif; return $views; } add_filter('views_edit-shop_order', 'woocommerce_custom_order_views'); /** * Order page actions **/ function woocommerce_remove_row_actions( $actions ) { if( get_post_type() === 'shop_order' ) : unset( $actions['view'] ); unset( $actions['inline hide-if-no-js'] ); endif; return $actions; } add_filter( 'post_row_actions', 'woocommerce_remove_row_actions', 10, 1 ); /** * Order page views **/ function woocommerce_bulk_actions( $actions ) { if (isset($actions['edit'])) unset($actions['edit']); return $actions; } add_filter( 'bulk_actions-edit-shop_order', 'woocommerce_bulk_actions' ); /** * Order messages **/ function woocommerce_post_updated_messages( $messages ) { if( get_post_type() === 'shop_order' ) : $messages['post'][1] = sprintf( __('Order updated.', 'woothemes') ); $messages['post'][4] = sprintf( __('Order updated.', 'woothemes') ); $messages['post'][6] = sprintf( __('Order published.', 'woothemes') ); $messages['post'][8] = sprintf( __('Order submitted.', 'woothemes') ); $messages['post'][10] = sprintf( __('Order draft updated.', 'woothemes') ); endif; return $messages; } add_filter( 'post_updated_messages', 'woocommerce_post_updated_messages' );