Forum Index, replace short with full

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

Quote · 8 Oct 2013

I would suggest to change links to these pages in menu builder in admin panel.

Rules → http://www.boonex.com/terms
Quote · 9 Oct 2013

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

Quote · 9 Oct 2013

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
Quote · 17 Oct 2013
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.