第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

避免在 WooCommerce 購(gòu)物車中單擊按鈕時(shí)僅運(yùn)行一次的功能

避免在 WooCommerce 購(gòu)物車中單擊按鈕時(shí)僅運(yùn)行一次的功能

PHP
慕容3067478 2021-06-18 17:01:39
每次單擊 update_cart 按鈕時(shí),我都嘗試運(yùn)行函數(shù) cart_refresh_update_qty,但它僅在第一次起作用,如果我再次更新購(gòu)物車,它將不會(huì)再次運(yùn)行,我需要重新加載頁(yè)面嗎?這是我的 WordPress 子主題函數(shù)文件中的一些自定義代碼。<?php//// Recommended way to include parent theme styles.//  (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)//  add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );function theme_enqueue_styles() {    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );    wp_enqueue_style( 'child-style',    get_stylesheet_directory_uri() . '/style.css',    array('parent-style')    );}// register add to cart action    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_add_to_cart', 10 );/*global $product;       if ( in_category('listone-sample')) {       add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_add_to_cart', 10 );}*/add_action( 'woocommerce_before_shipping_calculator', 'cart_refresh_update_qty',10); function cart_refresh_update_qty() {    if (is_cart()) {       ?>       <script type="text/javascript">      jQuery("input[name = 'update_cart']").on('click', function(){          alert('Cart Qty Changed, Shipping total will be updated.');     jQuery("[name='calc_shipping']").trigger("click");     });      </script>      <?php    } }?>我沒有看到任何錯(cuò)誤消息。
查看完整描述

1 回答

?
阿波羅的戰(zhàn)車

TA貢獻(xiàn)1862條經(jīng)驗(yàn) 獲得超6個(gè)贊

而是使用以下作為document.body委托事件:


add_action( 'wp_footer', 'cart_refresh_update_qty');

function cart_refresh_update_qty() {

    if (is_cart()) :

    ?>

    <script type="text/javascript">

    jQuery( function($){

        $(document.body).on('click', 'button[name="update_cart"]', function(){

            console.log('Cart Qty Changed, Shipping total will be updated.');

            $('button[name="calc_shipping"]').trigger('click');

        });

    });

    </script>

    <?php

    endif;

}

代碼位于活動(dòng)子主題(或活動(dòng)主題)的 functions.php 文件中。測(cè)試和工作。


現(xiàn)在它不僅會(huì)第一次運(yùn)行......


查看完整回答
反對(duì) 回復(fù) 2021-06-25
  • 1 回答
  • 0 關(guān)注
  • 153 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)