Hello,
I want to replace 'Forums Index' - Short Index block on Forums Home 'Forums Index' - Full Description from Forums Index page.
Is there a way to do this?
Thank you in advance :)
Regards,
Shafa
Hello, I want to replace 'Forums Index' - Short Index block on Forums Home 'Forums Index' - Full Description from Forums Index page. Is there a way to do this? Thank you in advance :) Regards, Shafa |
I would suggest to change links to these pages in menu builder in admin panel. Rules → http://www.boonex.com/terms |
Thank you AlexT Changing links would help but I also need 'Search' block and 'Latest posts" block as well. 'Forum Index' page does not include those. Regards, Shafa |
Try the following modification, replace the following line in modules/boonex/forum/index.php file: default: if (!isset($_GET['start'])) { $o = new BxDolOrcaForumsHome(); $s = $o->getCode(); list($GLOBALS['glBeforeContent'], $GLOBALS['glAfterContent']) = explode ($o->sMarker, $s); } transCheck ($f->getRecentTopicsXML(true, (int)$_GET['start']), $gConf['dir']['xsl'] . 'recent_topics_main.xsl', $_GET['debug'] ? 0 : 1); break; to this one: default: if (!isset($_GET['start'])) { $o = new BxDolOrcaForumsHome(); $s = $o->getCode(); list($GLOBALS['glBeforeContent'], $GLOBALS['glAfterContent']) = explode ($o->sMarker, $s); } transCheck ($f->getPageXML(true, $_GET), $gConf['dir']['xsl'] . 'home_main.xsl', $_GET['debug'] ? 0 : 1); break; Rules → http://www.boonex.com/terms |