Topic: Add link (URL) to menu

Hy!

How can I add URL (for example: PunBB forum link like Wolfcms.org) to the menu list.
I can add but the only latest.
How can I add like second or third item?

Sorry my bad english :S

Thumbs up

2

Re: Add link (URL) to menu

Hi  tamascsaba! Welcome to the Wolf forums.

You should read the instructions in the Wiki

Assuming you put your forum in a subfolder to your Wolf install called "forum", the you should also make a page in Wolf with the name "Forum", and set the page filter to "-none-" and use this only in the body of the page:

<?php
    header("Location: /forum");
    exit();
?>

That page should (1) put a "Forum" entry in your menu, and (2) redirect to your forum (assuming you followed the wiki instructions).

Hope that helps! wink Ask again here if you need more help...