我正在下我的woocommerce订单后显示一些文本。
我有以下一段代码,但似乎没有用。可能是什么问题?
add_action('woocommerce_thankyou', 'simplicate_send', 10, 1);
function simplicate_send($order_id){
echo 'hello';
}
答案 0 :(得分:0)
请尝试在functions.php中尝试以下代码
add_action( 'woocommerce_thankyou', 'bbloomer_redirectcustom',10,1);
function bbloomer_redirectcustom( $order_id ){
$order = wc_get_order( $order_id );
//whatever you dispaly text here
// echo "hello";
$url = 'http://localhost/html/wordpress3/?page_id=501'; // redirect thank you page
if ( ! $order->has_status( 'failed' ) ) {
wp_safe_redirect( $url );
exit;
}
}