在Woocommerce中,我试图根据客户在提交订单时选择的付款方式显示消息。我有2种付款方式,BACS和Check,我需要为每个付款方式显示不同的消息。
I just found that you can put a message on the page of thankyou.php
但我需要这个自定义消息出现在订单页面上,并且还要添加到pdf发票中(我使用的是WooCommerce PDF Invoices插件)。
以下内容将首先将基于支付网关的自定义消息保存为自定义订单元数据(自定义字段)...这样您就可以更轻松地在PDF发票中设置此订单自定义字段(请参阅末尾的注释):
// Save payment message as order item meta data
add_filter( 'woocommerce_checkout_create_order', 'save_custom_message_based_on_payment', 10, 2 );
function save_custom_message_based_on_payment( $order, $data ){
if ( $payment_method = $order->get_payment_method() ) {
if ( $payment_method === 'cheque' ) {
// For Cheque
$message = __("My custom message for Cheque payment", "woocommerce");
} elseif ( $payment_method === 'bacs' ) {
// Bank wire
$message = __("My custom message for Bank wire payment", "woocommerce");
}
// save message as custom order meta data (custom field value)
if ( isset($message) )
$order->update_meta_data( '_payment_message', $message );
}
}
然后,以下内容将使用挂钩(不更改模板)在订单接收页面,查看订单页面和电子邮件通知上显示此自定义消息:
// On "Order received" page (add payment message)
add_filter( 'woocommerce_thankyou_order_received_text', 'thankyou_custom_payment_message', 10, 2 );
function thankyou_custom_payment_message( $text, $order ) {
if ( $message = $order->get_meta( '_payment_message' ) ) {
$text .= '<br><div class="payment-message"><p>' . $message . '</p></div>' ;
}
return $text;
}
// On "Order view" page (add payment message)
add_action( 'woocommerce_view_order', 'view_order_custom_payment_message', 5, 1 );
function view_order_custom_payment_message( $order_id ){
if ( $message = get_post_meta( $order_id, '_payment_message', true ) ) {
echo '<div class="payment-message"><p>' . $message . '</p></div>' ;
}
}
// Email notifications display (optional)
add_action( 'woocommerce_email_order_details', 'add_order_instruction_email', 10, 4 );
function add_order_instruction_email( $order, $sent_to_admin, $plain_text, $email ) {
if( $sent_to_admin )
return;
elseif( $text = $order->get_meta('_payment_message') )
echo '<div style="border:2px solid #e4e4e4;padding:5px;margin-bottom:12px;"><strong>Note:</span></strong> '.$text.'</div>';
}
代码在您的活动子主题(或主题)的function.php文件中。经过测试和工作。
PDF发票的注释
stackOverFlow上的规则是当时的一个问题,因此对于一个问题,一个答案,以避免您的问题被过于宽泛地关闭。
由于Woocommerce有许多不同的PDF发票插件,您将获得用于WooCommerce PDF Invoices插件的to read the developer documentation,以在PDF发票中显示该自定义消息。