在WordPress中钩住“按下购物按钮后”

时间:2019-11-15 08:59:20

标签: wordpress redirect shopping-cart

我试图找到“用户按下继续购物按钮后”的钩子,以编写代码来取消此订单。 我尝试了“ woocommerce_continue_shopping_redirect”,但是它不起作用。

如何在用户按下“继续购物”按钮后立即运行我的代码,或者仅重定向到特定页面? 这是我之前尝试过的代码,无法正常工作。

function custom_continue_shopping_redirect_url ( $url ) {
   $url = "http://www.woothemes.com"; // Add your link here
   return $url;
}
add_filter('woocommerce_continue_shopping_redirect', 'custom_continue_shopping_redirect_url', 20, 1);

0 个答案:

没有答案