我在wooccommerce中面临这个问题。当产品我们从购物车中删除时,更新购物车按钮被禁用。刷新页面后工作正常。
我正在尝试这个钩子:
woocommerce_cart_item_removed
但它不起作用,一无所获。
在Wooccommerce的最新版本中,有一个JavaScript回调触发器可用,如本提交中所述:
/**
* Update the .cart_totals div with a string of html.
*
* @param {String} html_str The HTML string with which to replace the div.
*/
var update_cart_totals_div = function( html_str ) {
$( '.cart_totals' ).replaceWith( html_str );
$( document.body ).trigger( 'updated_cart_totals' );
};
因此,您可以添加一段Javascript,以便在触发该触发器时运行,并启用按钮或简单地刷新页面。例如:
$('body').on('updated_cart_totals',function() {
$( '.shop_table.cart' ).closest( 'form' ).find( 'input[name="update_cart"]' ).prop( 'disabled', false ); // this will enable the button.
//location.reload(); // uncomment this line to refresh the page.
});