返回结账页面上车按钮(Back to cart button on checkout page)

2019-09-29 21:22发布

是否有任何解决方案,以显示WooCommerce结帐页面上的“返回到购物车”按钮?

其实只有一个完整的订单按钮,但我们需要一个返回按钮,如果用户想纠正他的命令。

谢谢。

Answer 1:

是的,它有可能与结账页面上的“返回购物车”按钮,显示自定义通知。 下面是在自定义挂钩函数woocommerce_before_checkout_form行动挂钩:

add_action( 'woocommerce_before_checkout_form', 'return_to_cart_notice_button' );
function return_to_cart_notice_button(){

    // HERE Type your displayed message and text button
    $message = __('Go back to the Cart page', 'woocommerce');
    $button_text = __('Back to Cart', 'woocommerce');

    $cart_link = WC()->cart->get_cart_url();

    wc_add_notice( '<a href="' . $cart_link . '" class="button wc-forward">' . $button_text . '</a>' . $message, 'notice' );
}

代码放在您的活动子主题(或主题)的function.php文件或也以任何插件文件。

该代码测试和工程。



文章来源: Back to cart button on checkout page