最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Refresh WooCommerce Mini-cart via ajax - Stack Overflow

programmeradmin3浏览0评论

I'm adding items to the cart via a custom plugin and everything works as i need it to, however the mini cart does not update and i can't seem to trigger a refresh. Here is a piece of my code for reference:

javascript: jQuery.ajax({

        url: '/result/',

        data:{post_title:title, post_content:detail,price:price,quantity:quantity},

        success:function (data_rdx) {

            jQuery(".fr-loading").hide();



            if(data_rdx=='fail') {

                alert("Error, Please Try Again");

            } else {

                jQuery(".orb_custom").html(data_rdx);

                //trigger mini-cart refresh
                alert('Cart Updated');

            }

        }});

I've tried adding a small ajax post with wc-ajax=get_refreshed_fragments but it doesn't seem to work. What would be the easiest way to trigger a refresh?

Thank you.

I'm adding items to the cart via a custom plugin and everything works as i need it to, however the mini cart does not update and i can't seem to trigger a refresh. Here is a piece of my code for reference:

javascript: jQuery.ajax({

        url: '/result/',

        data:{post_title:title, post_content:detail,price:price,quantity:quantity},

        success:function (data_rdx) {

            jQuery(".fr-loading").hide();



            if(data_rdx=='fail') {

                alert("Error, Please Try Again");

            } else {

                jQuery(".orb_custom").html(data_rdx);

                //trigger mini-cart refresh
                alert('Cart Updated');

            }

        }});

I've tried adding a small ajax post with wc-ajax=get_refreshed_fragments but it doesn't seem to work. What would be the easiest way to trigger a refresh?

Thank you.

Share Improve this question asked Aug 23, 2016 at 4:17 JamasenJamasen 211 silver badge2 bronze badges 2
  • ajax.reload()? - datatables/reference/api/ajax.reload() or you could just use window.location.reload(); – Dandy Commented Aug 23, 2016 at 4:23
  • This works but it's not ideal. The users need to go through 5 steps before they can add products to the cart. Is there a way to use the existing 'get_refreshed_fragments' function via ajax? or possibly a refresh cart button? Thanks. – Jamasen Commented Aug 23, 2016 at 6:25
Add a ment  | 

1 Answer 1

Reset to default 9
jQuery(document.body).trigger('wc_fragment_refresh');
发布评论

评论列表(0)

  1. 暂无评论