PDA

View Full Version : Create new page with link from navbar?


RockMTP
10-28-2007, 10:07 AM
I'd like to create a new page that members will access via a link between 'Members List' & 'New Posts' in the top nav bar.

This will go to a standard html page.

My questions are:

Is this possible, will the user permission still be the same (so only registered members will be able to click the link)and slightly off topic, could I import the user permission to the html page so that people couldn't just copy/paste the url and see the content?

I don't know much about coding so all help is appreciated.

Thanks

wpeloquin
10-28-2007, 06:22 PM
why not make a custom template/page based off of http://www.vbulletin.com/forum/showthread.php?t=197563

then just make it so that you cannot view that page unless you are logged in. make the template something like this:

<if condition="$show['member']">
<!-- page code -->
page body info
<!-- /page code -->
<else>
You must be logged in to view this page
</if>