Couldn't find this elsewhere, but hopefully I am not created a repeat thread.
A suggestion for the Video Page. When you go to the page and click Next Video it takes you to page 2 and the index on the right shows the second page of videos even though the video you are viewing is on the second page. Would it be possible to keep the index aligned with the current video. Using the Streamline demo as an example, you wouldn't see the 2nd page of videos on the right until you are on video #6.
Original code:
Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=".get_theme_mod('vid_cat')."&showposts=".get_theme_mod('vid_cat_num')."&paged=$page"); while ( have_posts() ) : the_post() ?>
pseudocode (cause my php skills are weak):
indexpage = Int(paged/get_theme_mod('vid_cat_num') + 1
Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=".get_theme_mod('vid_cat')."&showposts=".get_theme_mod('vid_cat_num')."&paged=$indexpage"); while ( have_posts() ) : the_post() ?>