单击“继续付款”后,然后在Woocommerce中付款之前重定向

时间:2019-01-30 17:27:02

标签: php wordpress woocommerce

我有两个网站都是WooCommerce。 Site ASite B。在客户重定向付款网关之前,我想重定向到Site B,同时还要传递站点B拥有购物车的数据。

到目前为止,这是我的尝试:

function redirect_checkout_add_cart( $url ) {
    global $woocommerce;
    $items = $woocommerce->cart->get_cart();
   // not sure what to return
}

add_filter( 'add_to_cart_redirect', 'redirect_checkout_add_cart' );

如您所见,我可以获取购物车对象,但是我不确定接下来要做什么。我该怎么办?

0 个答案:

没有答案
相关问题