Hi,
Please open to edit sf-products.php file at /neighborhood/includes/swift-framework/sf-content-display.
Find this code:-
} else if ($asset_type == "featured-products") {
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'product_cat' => $category,
'ignore_sticky_posts' => 1,
'meta_key' => '_featured',
'meta_value' => 'yes',
'posts_per_page' => $item_count
);
Change with:-
} else if ($asset_type == "featured-products") {
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'product_cat' => $category,
'ignore_sticky_posts' => 1,
'meta_key' => '_featured',
'meta_value' => 'yes',
'orderby' => 'rand',
'posts_per_page' => $item_count
);