首页 > 解决方案 > 在 n 秒后自动从 Woocommerce 感谢您重定向到内部页面(主页)

问题描述

我尝试了几天来解决这个问题。我找到了接近但不完全是我需要的解决方案。主要基于这两个例子:

  1. 从 Woocommerce 自动重定向到外部链接传递变量
  2. https://www.businessbloomer.com/resolved-woocommerce-redirect-custom-thank-page/ 我把这段代码放在我的woocommerce自定义functions.php中

`

// Redirect from thank you page to home after 3 seconds

add_action( 'woocommerce_thankyou', 'ckde_redirect_after_checkout');

function ckde_redirect_after_checkout( $order_id ){

  $order = wc_get_order( $order_id );

  $url = get_site_url();

  if ( ! $order->has_status( 'failed' ) ) {

    header("Refresh: 3; $url" );

  }

}

有最佳实践或更清晰的方法来做到这一点?无论如何,它有效!

标签: phpwordpressredirectwoocommercecheckout

解决方案


推荐阅读