Support » Plugin: WORDPRESS VIDEO GALLERY » error on [videohome] page

Viewing 2 replies - 1 through 2 (of 2 total)
  • I have the same error.

    Thanks,
    Chris

    Hi,

    Please open \wp-content\plugins\contus-video-gallery\front\views\videomore.php and go to line 219 and find the below code

    //PAGINATION STARTS
    $total          = $CountOFVideos;
    $num_of_pages   = ceil($total / $dataLimit);
    $page_links     = paginate_links(array(
    'base'      => add_query_arg('pagenum', '%#%'),
    'format'    => '',
    'prev_text' => __('«', 'aag'),
    'next_text' => __('»', 'aag'),
    'total'     => $num_of_pages,
    'current'   => $pagenum
    ));
    
    if ($page_links) {
    $div .='<div class="tablenav"><div class="tablenav-pages" >' . $page_links . '</div></div>';
    }
    //PAGINATION ENDS

    Now replace with the following code.

    if($dataLimit!=0){
    //PAGINATION STARTS
    $total          = $CountOFVideos;
    $num_of_pages   = ceil($total / $dataLimit);
    $page_links     = paginate_links(array(
    'base'      => add_query_arg('pagenum', '%#%'),
    'format'    => '',
    'prev_text' => __('«', 'aag'),
    'next_text' => __('»', 'aag'),
    'total'     => $num_of_pages,
    'current'   => $pagenum
    ));
    
    if ($page_links) {
    $div .='<div class="tablenav"><div class="tablenav-pages" >' . $page_links . '</div></div>';
    }
    //PAGINATION ENDS
    }

    Kindly note that you must have entered rows or/and columns as zero for “Featured” , “Recent”, “Popular”, “Category” videos in admin video gallery settings page. So that this issue happened.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘error on [videohome] page’ is closed to new replies.