Hi
I have got this code from the QuickCheckout plugin, the following code will hide the cart when the user clicks on the QuickCheckout button:
jQuery(document).ready(function($){
$('button.quick-checkout-product').click(function() {
$('.shopping-cart-widget').hide();
});
});
Where or how can I add the code?
Best regards
Tonny