Random video on Home page.

Discussion in 'VideoCraft WordPress Theme' started by humgurung, Jun 1, 2014.

  1. humgurung

    humgurung New Member

    Joined:
    May 30, 2014
    Messages:
    7
    Likes Received:
    0
    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
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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
     
  3. humgurung

    humgurung New Member

    Joined:
    May 30, 2014
    Messages:
    7
    Likes Received:
    0
    Gaurav,
    I try to show random video on FEATURED from Featured Category as seen on attachment.
    Thanks
    Hum featured_video.jpg
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  5. humgurung

    humgurung New Member

    Joined:
    May 30, 2014
    Messages:
    7
    Likes Received:
    0
    How the featured video work on current theme?
     
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    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
     

Share This Page