我想更改感谢页面文本,以防客户已通过paypal付款。 通过PayPal重定向工作正常。订单状态为“正在处理”,确定。 但是如何更改重定向页面上的感谢文本(https://www.example.com/checkout/order-received/)
我尝试了以下操作,但没有成功:
function my_update_order_status() {
$order = new WC_Order($order_id);
if ($order_status == 'processing')
echo 'NEW MESSAGE';
else
echo 'NOT PAID TEXT';
}
add_filter('woocommerce_thankyou_order_received_text', 'my_update_order_status', 10, 2);
答案 0 :(得分:0)
有关如何更改感谢页面的说明:
https://wordpress.org/support/topic/how-to-edit-the-thank-youorder-received-page
如果您不想进行任何模板修改,则可以包含订单接收功能以进行调整。例如:
function isa_order_received_text( $text, $order ) {
$new = $text . ' All received and an email is on its way to you!.';
return $new;
}
add_filter('woocommerce_thankyou_order_received_text', 'isa_order_received_text', 10, 2 );
以上内容为当前文本输出添加文本。