Page 1 of 1

[SOLVED] Adding a phpBB Forum

Posted: Thu Jul 01, 2021 7:15 pm
by superoxide
Hello,
I am using the latest version of wondercms and I want to add a forum link the same way WonderCMS community page is.
I have installed the forum in the subdirectory /forum ,
My question is how can I add a menu item that takes it to the forum page exactly the same way WonderCMS comunity link works.

Thanks

Re: Adding a phpBB Forum

Posted: Fri Jul 02, 2021 10:31 am
by wiz
Hi superoxide.

The easiest way is to manually edit your theme.php and add the link.
WonderCMS website solves this by adding a new

Code: Select all

<li></li>
item along with the actual link you want to redirect to.

Code: Select all

<ul>
    <? echo $Wcms->menu() ?>

    <li class="nav-item">
        <a href="/community" class="nav-link" title="Community">
            Community
        </a>
    </li>
</ul>
This should solve your issue.

Re: Adding a phpBB Forum

Posted: Fri Jul 02, 2021 11:55 am
by superoxide
Thank you, that worked.

Re: Adding a phpBB Forum

Posted: Fri Jul 02, 2021 12:07 pm
by wiz
Gladl to help - marking this thread as solved.

If you want, you can post your website in the showcase section (should attract some visitors) :)