嗨,我将重定向设置为自定义谢谢页面
add_action( 'template_redirect', 'correct_redirect' );
function correct_redirect(){
/* we need only thank you page */
if( is_wc_endpoint_url( 'order-received' ) && isset( $_GET['key'] ) ) {
wp_redirect('https://localhost/test/thank-you-page-test');
exit;
}
}
一切正常。问题如何在默认的Woocommerce谢谢页面上添加订单汇总表? 谢谢