get_related();
if (sizeof($related)>0) :
echo '
'.__('Related Products', 'jigoshop').'
';
$args = array(
'post_type' => 'product',
'ignore_sticky_posts' => 1,
'posts_per_page' => 4,
'orderby' => 'rand',
'post__in' => $related
);
query_posts($args);
jigoshop_get_template_part( 'loop', 'shop' );
echo '';
endif;
wp_reset_query();
?>