在订单详细信息

时间:2017-01-31 15:51:38

标签: php wordpress woocommerce hook-woocommerce orders

我在Thankyou页面/订单已接收页面上自定义文本位置时遇到困难。我添加了一些自定义文字,但我无法将其置于我喜欢的位置。

见附图。它应该在顶部,当我希望它在"订单详细信息部分的照片下)

/**
 * Custom text on the receipt page.
 */
function isa_order_received_text( $text, $order ) {
    $new = $text . ' If you do not see the download button(s) below, please refresh the page. Processing can take a few minutes.';
    return $new;
}
add_filter('woocommerce_thankyou_order_received_text', 'isa_order_received_text', 10, 2 );

enter image description here

1 个答案:

答案 0 :(得分:1)

要轻松搞定,您可以使用优先级最高的 $neworders = Orders::where('admin_seen', 0)->paginate(20); Orders::whereIn('id', $neworders->pluck('id'))->update(['admin_seen' => 1]); 挂钩(1),这样:

woocommerce_thankyou

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

代码经过测试并有效。