我正在使用WooCommerce Print Invoice&包装列表插件与Woocommerce打印发票。我需要在发票中打印产品的常规价格。请帮助。
谢谢!
答案 0 :(得分:0)
让这个工作 将以下代码添加到invoice.php -
$item['product']->regular_price
答案 1 :(得分:0)
要为每种产品的发票添加常规价格,只需将以下代码添加到invoice.php文件中,位于SKU的 dl 标记下方。
在我的例子中,我标记了它"单价"。如果你愿意,可以随意改变它。
<dl class="meta">
<?php $description_label = __( 'Unit Price', 'wpo_wcpdf' ); // registering alternate label translation ?>
<?php if( !empty( $item['product']->regular_price ) ) : ?><dt class="sku"><?php _e( 'Unit Price:', 'wpo_wcpdf' ); ?></dt><dd class="sku"><?php echo $item['product']->regular_price; ?></dd><?php endif; ?>
</dl>