Hi, Home page shows latest video as featured video. I would like to have random video from any category on Home page. Is it possible? Help will be appreciated. Thank you. Hum
Hello, Go to front-page.php present in your theme directory and replace the current code Code: query_posts(array('posts_per_page' => 3, 'post_type' => 'video_listing', 'video_cat' => "$term->name")); with code given below Code: query_posts( array( 'posts_per_page' => 3,'post_type' => 'video_listing','orderby' => 'rand', 'order' => 'DESC' , 'video_cat' => "$term->name") ); This will solve your issue. Thanks & Regards Gourav Shrivastava
Gaurav, I try to show random video on FEATURED from Featured Category as seen on attachment. Thanks Hum
Hello, Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry. Thanks & Regards Nitesh Raghuwanshi
Hello, Theme will display latest featured video as a main video at the front page. Edit video and check "Feature on Home Page" option to feature any video at the front page. Thanks & Regards Nitesh Raghuwanshi