Php WooCommerce-更改添加到购物车URL

Php WooCommerce-更改添加到购物车URL,php,html,wordpress,woocommerce,Php,Html,Wordpress,Woocommerce,我使用的是WooCommerce产品捆绑包,产品末尾有一个“添加到购物车”按钮。单击它刷新页面,并将加载项添加到购物车中。我想将URL更改为其他页面,而不是仅仅刷新它 以下是按钮的HTML代码: <button type="submit" class="single_add_to_cart_button bundle_add_to_cart_button button alt">Add to cart</button> 添加到购物车 如果我没有弄错,您希望在“添加到购物

我使用的是WooCommerce产品捆绑包,产品末尾有一个“添加到购物车”按钮。单击它刷新页面,并将加载项添加到购物车中。我想将URL更改为其他页面,而不是仅仅刷新它

以下是按钮的HTML代码:

<button type="submit" class="single_add_to_cart_button bundle_add_to_cart_button button alt">Add to cart</button>
添加到购物车

如果我没有弄错,您希望在“添加到购物车”操作正确完成后重定向到其他页面

如果是这样的话,就把它放到
functions.php

function redirect_after_add_to_cart( $url ) {
    return esc_url( get_permalink( get_page_by_title( 'Your Page Title' ) ) );
}
add_filter( 'woocommerce_add_to_cart_redirect', 'redirect_after_add_to_cart', 99 );

您可以更改woocommerce设置,并可以将用户直接重定向到签出页面。-向下滚动并查找
添加到购物车
behavior@cale_b好的,不过我希望他们转到/自定义页/而不是购物车。这可能吗?你真是个救命恩人