Hi,
Top rated products are displaying perfectly. There are many related products so its showing randomly. I have resolved it. I edited related.php file at /neighborhood/woocommerce/single-product/
Find this code:-
global $product, $woocommerce_loop, $sf_carouselID;
$related = $product->get_related(12);
if ( sizeof( $related ) == 0 ) return;
$args = apply_filters('woocommerce_related_products_args', array(
'post_type' => 'product',
'ignore_sticky_posts' => 1,
'no_found_rows' => 1,
'posts_per_page' => 12,
'orderby' => $orderby,
'post__in' => $related,
'post__not_in' => array($product->id)
) );
Change with:-
global $product, $woocommerce_loop, $sf_carouselID;
$related = $product->get_related(12);
if ( sizeof( $related ) == 0 ) return;
$args = apply_filters('woocommerce_related_products_args', array(
'post_type' => 'product',
'ignore_sticky_posts' => 1,
'no_found_rows' => 1,
'posts_per_page' => 12,
'orderby' => 'title',
'order' => 'ASC',
'post__in' => $related,
'post__not_in' => array($product->id)
) );
Thanks
Mohammad