dongyou7739 2018-10-24 08:32
浏览 93
已采纳

使用woocommerce_add_to_cart_validation挂钩时禁用页面重新加载

When you add a product to the cart, the user fills in the fields and when you click on the Add to order button (this is essentially to add to the cart), the fields are checked (for clarity, I simplified this to the if condition ($a === 1)).

My function used with woocommerce_add_to_cart_validation hook is:

function so_validate_add_cart_item($true){
  $a = 1;
  if( $a === 1){
    $true = 0;
    return $true;
  }

}

Everything works well and the service is not added, but the page is reloaded.

By default $true = 1, but tried to return value false too, the page is overloaded.

How to stop page reloading not completely, but under a certain condition and it is desirable in this hook?

  • 写回答

1条回答 默认 最新

  • doufangmu9087 2018-10-24 09:25
    关注

    You can't avoid page reloading when using woocommerce_add_to_cart_validation filter hook.

    There is 2 cases when using woocommerce_add_to_cart_validation filter hook:

    1) Allow add to cart: You return the default filter hook argument (which is true):

    add_filter( 'woocommerce_add_to_cart_validation', 'filter_add_to_cart_validation', 10, 3 );
    function filter_add_to_cart_validation( $passed, $product_id, $quantity ) {
        $a = 0; // <===
    
        if( $a === 1 ){
            $passed false; // Avoiding add to cart
    
            // (Optional) Display a custom eror notice
            wc_add_notice( __('Alert message: "add to cart avoided"', 'woocommerce' ), 'error' );
        }
        return $passed;
    }
    

    For ajax add to cart, the product will be added to cart (as by default) without reloading.

    For normal add to cart, the product will be added to cart and the page will be reloaded as by default.


    2) Avoid add to Cart: The condition in the IF statement matches, the filter hook argument is set to false and returned (optionally you can display an error message):

    add_filter( 'woocommerce_add_to_cart_validation', 'filter_add_to_cart_validation', 10, 3 );
    function filter_add_to_cart_validation( $passed, $product_id, $quantity) {
        $a = 1;
    
        // Any other value for $a than "1" will allow add to cart
        if( $a === 1){
            $passed false; // Avoid add to cart
    
            // (Optional) Display a custom eror notice
            wc_add_notice( __('Alert message: "add to cart avoided"', 'woocommerce' ), 'error' );
        }
        return $passed;
    }
    

    For ajax add to cart, customer will be redirected to the single product page (avoiding add to cart).

    For normal add to cart, the page will be reloaded as by default (avoiding add to cart).


    The only possible way to avoid page reloading should be to use a custom (Ajax) jQuery script, meaning that you should build your own validation functionality.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题