cart->get_cross_sells();
if (sizeof($crosssells)==0) return;
$woocommerce_loop['columns'] = 2;
?>
'product',
'ignore_sticky_posts' => 1,
'posts_per_page' => 2,
'no_found_rows' => 1,
'orderby' => 'rand',
'post__in' => $crosssells
);
query_posts($args);
woocommerce_get_template_part( 'loop', 'shop' );
wp_reset_query();
?>