WooCommerce

WooCommerce: 打印订单

WooCommerce的订单页面内容繁多,如果直接打印后台页面,想必是惨不忍睹,还好有一款免费插件可以解决这个问题——WooCommerce Print Invoices & Delivery Notes,这个插件的好处是通过修改模版,你可以打印订单中的任何内容,漂亮的打印出来。

关于该插件的使用不再赘述,本文介绍如何修改打印模版,加入自己需要的数据。比如,加入产品缩略图和产品分类,效果如下图所示

print-order

首先,获取缩略图和产品分类数据

在主题的functions.php中加入如下代码

add_filter( 'wcdn_order_item_data', 'wcdn_print_image' );
function wcdn_print_image( $data ){
	//get image
	$img_id = get_post_thumbnail_id( $data['product_id'] );
	$img_url = wp_get_attachment_image_src($img_id);
	$img_url = $img_url[0];
	$data['image'] = $img_url;
	
	//get category
	$terms = get_the_terms( $data['product_id'], 'product_cat' );
	foreach ($terms as $term) {
            $data['category'][] = $term->name . ': ' . $term->description;
	}
	return $data;
}

修改打印模版

woocommerce-delivery-notes/templates/print/print-delivery-note.php复制到主题目录/woocommerce/print/下,打开该文件修改。

<div id="order-items">是订单列表的开始,首先把表头修改一下,加入了我需要的Category

<thead>
    <tr>
        <th class="product-label" width="50%" ><?php _e('Product', 'woocommerce-delivery-notes'); ?></th>
        <th class="product-label" width="30%"><?php _e('Category', 'woocommerce-delivery-notes'); ?></th>
        <th class="quantity-label" width="10%"><?php _e('Quantity', 'woocommerce-delivery-notes'); ?></th>
        <th class="totals-label" width="10%"><?php _e('Totals', 'woocommerce-delivery-notes'); ?></th>
    </tr>
</thead>

然后修改表单内容,刚刚在主题funcitons.php中已经将额外的数据传过来,这些数据由下面这个函数获取

$items = wcdn_get_order_items();

接下来要做的就是调用这些数据

<?php $items = wcdn_get_order_items(); if( sizeof( $items ) > 0 ) : foreach( $items as $item ) : ?><tr>
        <td class="description"><?php echo $item['name']; ?>
            <?php echo $item['meta']; ?>
            <dl class="meta">
                <?php if( !empty( $item['sku'] ) ) : ?>
                    <dt><?php _e( 'SKU:', 'woocommerce-delivery-notes' ); ?></dt><dd><?php echo $item['sku']; ?></dd><?php endif; ?>
                <?php if( !empty( $item['weight'] ) ) : ?>
                    <dt><?php _e( 'Weight:', 'woocommerce-delivery-notes' ); ?></dt><dd><?php echo $item['weight']; ?><?php echo get_option('woocommerce_weight_unit'); ?></dd><?php endif; ?>
            </dl>
        </td>
        <td class="quantity"><?php echo $item['quantity']; ?></td>
        <td class="price"><?php echo $item['price']; ?></td>
</tr><?php endforeach; endif; ?>

模版文件下载:[download id=53]

7条评论

  1. 将woocommerce-delivery-notes/templates/print/print-delivery-note.php复制到主题目录/woocommerce/print/下,打开该文件修改。找不到/woocommerce/print/這個資料夾?

        1. 不存在就是插件更新了啊,这文章是一年前的,插件模板系统变了,只能重新读源代码去写,不过意思都差不多。

  2. Sola 您好,
    我想請問
    有沒有方法可以將每個月訂單匯出成一個報表呢?檔案可能是csv
    然後將每筆訂單中的欄位透過csv檔案輸出出來

    真的很需要您的幫忙!
    謝謝您了。

    chenghsuango

评论已关闭。