Hi tmh12.
1. If you don’t have a child theme, create one:
https://docs.presscustomizr.com/article/239-using-a-child-theme-with-hueman
2. Use your host cPanel file manager or FTP to create a subfolder /parts in your child theme.
3. Copy the theme template file /parts/featured.php to your child theme /parts folder
4. At the top of the file, add the “orderby” parameter to the query and set it to random:
// Query featured entries
$featured = new WP_Query(
array(
'orderby' => 'rand', //randomize the order
'no_found_rows' => false,
'update_post_meta_cache' => false,
'update_post_term_cache' => false,
'ignore_sticky_posts' => 1,
'posts_per_page' => hu_get_option('featured-posts-count'),
'cat' => hu_get_option('featured-category')
)
);
https://codex.www.ads-software.com/Class_Reference/WP_Query#Order_.26_Orderby_Parameters