The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!
You are not logged in.
Pages: 1
In mobile site when we choose a category, it only shows 4 of the latest videos from that category and there is no NEXT bottom to go to second page to view more videos. example: http://www.scriptdevel.com/mobile/amateur/
Is there any fix for this to apply right now?
Thanks,
Offline
Edit mobile/components/category.php and replace:
$total_videos = $this->db->get_field($sql_count, $this->mcfg['videos_per_page']);
$pagination = VPagination::get($page, $total_videos, 4);
with:
$total_videos = $this->db->get_field($sql_count, 'total_videos');
$pagination = VPagination::get($page, $total_videos, $this->mcfg['videos_per_page']);
Also fixed in 1.0.
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
Perfect, thanks a lot.
Offline
Pages: 1