Product has been added to your cart
jQuery(document).ready(function($) {
$('.widget_product_categories li').has('ul.children').each(function() {
if ($(this).find('.cat-toggle').length === 0) {
$(this).prepend('');
}
});
$('.widget_product_categories').on('click', '.cat-toggle', function(e) {
e.preventDefault();
$(this).toggleClass('open');
$(this).siblings('ul.children').slideToggle(200);
});
});