在WooCommerce购物车上删除产品时,我想显示一条确认消息。我找不到任何代码或解决方案。
答案 0 :(得分:0)
使用此代码:
if(confirm("Are you sure want to delete? ")){
//logic to remove your product.
}
谢谢。
答案 1 :(得分:0)
请在您的子主题js中添加以下代码。
<script>
jQuery( function($) {
$('.remove').click( function( event ) {
if( ! confirm( 'Are you sure you want to remove product?' ) ) {
event.preventDefault();
}
});
});
</script>
我已经测试了代码及其对我的工作