Hey, SS9267547
I'm one of "The Bouncer 611" friends and he told me about the problems he was having, and I fixed them all.
I've included the updated game.php
aswell as the code I changed to make it work:
To fix the per page display, smilies, BBCODE, HTML and IMAGE code, open "game.php" and:
===================FIND=============
Code:
$perpage = $vbulletin->options['vbgamesperpage'];
$vbghtml = $vbulletin->options['vbgames_enable_html_code'];
$vbgsmiles = $vbulletin->options[vbgames_enable_smilies'];
$vbgbbcode = $vbulletin->options['vbgames_enable_bbcode'];
$vbgimgcode = $vbulletin->options['vbgames_enable_img_code'];
and Replace with this
Code:
$perpage = $vbulletin->options['mindesticgcms_perpage'];
$vbghtml = $vbulletin->options['mindesticgcms_enable_html_code'];
$vbgsmiles = $vbulletin->options['mindesticgcms_enable_smilies'];
$vbgbbcode = $vbulletin->options['mindesticgcms_enable_bbcode'];
$vbgimgcode = $vbulletin->options['mindesticgcms_enable_img_code'];
And to fix the PAGE Error that gives you a Blank page when you click to go to another page:
===================FIND=============
Code:
$pagenav = construct_page_nav($pagenumber, $perpage, $totalgames, 'games.php?' . $vbulletin->session->vars['sessionurl'] . 'do=listgames', '&c='. $db->escape_string($p) .''
. (!empty($vbulletin->GPC['perpage']) ? "&pp=$perpage" : "")
. (!empty($ltr) ? "&ltr=$ltr" : "")
);
and Replace with this:
Code:
$pagenav = construct_page_nav($pagenumber, $perpage, $totalgames, 'games.php?' . $vbulletin->session->vars['sessionurl'] . 'do=listgames', '&p='. $db->escape_string($p) .''
. (!empty($vbulletin->GPC['perpage']) ? "&pp=$perpage" : "")
. (!empty($ltr) ? "&ltr=$ltr" : "")
);
The updated game.php is also included if you wish to just download a working copy
BTW: can you make it that in the game list everything is minimize, and only expands with the game details if someone click on the game name?
and a collapse button to re-minimize the game?