$('.main-product .thumbnail-container').each(function(i) {
var height = $('.main-product .product-section h3').eq(i).height()+$('.main-product .thumbnail-container').eq(i).height();
if (height != 346) {
$('.main-product .product-frame .price').eq(i).css("top",(height+32)+"px");
}
});
if ( ! function_exists( 'woocommerce_mini_cart' ) ) {
/**
* Output the Mini-cart - used by cart widget
*
*/
function woocommerce_mini_cart( $args = array() ) {
$defaults = array(
'list_class' => ''
);
$args = wp_parse_args( $args, $defaults );
wc_get_template( 'cart/mini-cart.php', $args );
}
}