M
M
Mikhail Lebedev2020-11-07 23:00:57
WooCommerce
Mikhail Lebedev, 2020-11-07 23:00:57

WooCommerce cart appearance without page reload?

use this to hide cart from 0

add_action( 'wp_footer', 'hide_cart' );
function hide_cart(){
    if ( WC()->cart->get_cart_contents_count() == 0 ) {
      ?>
      <style>.cart{display: none;}</style>
      <?php
    }
}

it infuriates that when adding a product, the basket appears only if the page is refreshed (and products are added by ajax)
Ps: the same when deleting

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Y
yarovikov, 2020-11-08
@zaza41rus

well, hang the appearance of the basket on Ajax, what's the problem))

$('body').on('added_to_cart',function(){
    // Callback -> product added
    $('.cart').css('display','block');
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question