如何解决如何重定向到自定义谢谢页面,但阻止直接访问它
成功付款(woocommerce)之后,我需要将用户重定向到自定义的谢谢页面。在所有其他情况下,当用户尝试直接访问页面时,我想将他重定向到主页。但是,我下面的代码不起作用(对PHP不太熟悉)。
add_action( 'woocommerce_thankyou','redirect_to_thankyou_page');
function redirect_to_thankyou_page( $order_id ){
$ref = wp_get_referer();
if ($ref == "https://nachozeno.cz/pokladna/"){
$order = new WC_Order( $order_id );
$url = 'https://nachozeno.cz/dekujeme/';
if ( $order->status != 'Failed' ) {
wp_redirect($url);
exit;
}
exit;
}
else{
wp_redirect( get_home_url() );
exit;
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。