Viewing 1 replies (of 1 total)
  • Hi,

    To display videos from new to old in playlist page, open \wp-content\plugins\contus-video-gallery\front\models\videomore.php and find public function home_catthumbdata. Inside the function you can find the below code.

    ORDER BY w.ordering asc

    now replace with

    ORDER BY w.vid DESC

    To display videos from new to old in video home page, open \wp-content\plugins\contus-video-gallery\front\views\videohome.php and find function categoryList($CountOFVideos, $TypeOFvideos, $pagenum, $dataLimit, $category_page). Inside the function you can find the below code.

    ORDER BY p.playlist_order ASC

    Now replace with the following code.

    ORDER BY w.vid DESC

Viewing 1 replies (of 1 total)
  • The topic ‘Arranging the videos’ is closed to new replies.