MyBB Community Forums

Full Version: make page visible only if login
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I want to make page visible but content should not appear. Page should show that you are not logged in you don't have permison to view this page. So when user login he can see that page
which page ? is it any page on your forum ? if so see below setting

admin panel >> configuration (settings) >> Login and Registration Options >> Force Users to Login --> yes
I want to block 1 page only not all pages
What kind of page? Default or custom one?
How can I make custom page? I want to block custom page
Here you can see the way to build a custom page => http://docs.mybb.com/1.8/development/plu...-new-page/
(2015-09-22, 10:43 AM)SvePu Wrote: [ -> ]Here you can see the way to build a custom page => http://docs.mybb.com/1.8/development/plu...-new-page/

thx for reply. i want to make donation page like this http://www.shop.lamdaprocs.in/ and also i want Donate option on the forum at the top next to search , help buttons etc..
madhankumar wrote an answer about the "donation question" here => http://community.mybb.com/thread-180334-...pid1185360
when i run naor donation plugin i see
"Donations settings are not set the right way, please contact the Admin"
how to fix this
You'd have to edit the page and do like this;
if(!$mybb->user['uid'])
{
    error("Sorry, but we require you to login to view this page.");
}
Pages: 1 2