Development > Feature Requests

Site Links Block/Navigation

(1/1)

gamerxgirl:
I was wondering if it is possible for a site links block to be developed where you can add/remove links to actions, or external urls. Multiple usage of this block would be great.

Thanks!

[SiNaN]:
Sounds like a good request. But this requires an advanced menu manager module in SimplePortal. This could be considered for next major releases.

For now, I can suggest creating your menu with PHP or HTML block types.

Example PHP codes for you:


--- Code: ---global $context, $scripturl;

echo '
<ul class="normallist">
<li><a href="', $scripturl, '">Home</a></li>
<li><a href="', $scripturl, '?action=forum">Forum</a></li>
<li><a href="', $scripturl, '?action=profile">Profile</a></li>
<li><a href="', $scripturl, '?action=mlist">Members</a></li>
<li><a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">Logout</a></li>
</ul>';
--- End code ---

Navigation

[0] Message Index

Go to full version