Info
- 5 posts
- 2 voices
- Started 3 years ago by Anonymous
- Latest reply from Anonymous
- This topic is resolved
Removing Registration
-
- Posted 3 years ago #
Hello,
I have a new installation of bb press integrated with my main wordpress site. For a whole bunch of reasons I want to edit the bb press installation so that there's no way to register for the board through the board itself; I only want people to be able to register through the main wordpress site. Is there any way to block registration through the board, or just remove each element of it manually? I'm using the theme "Scoun" if it makes any difference. Any suggestions would be greatly appreciated.
-
- Posted 3 years ago #
can you not just remove the link to the registry page off the theme files ?
-
- Posted 3 years ago #
I'm not terribly good with code, I was hoping there was a plugin or option I could use rather than editing each page because I'm sure I'll mess something up! But if that's how it must be, that's how it must be...
-
- Posted 3 years ago #
it usually goes as follows:-
`blahblah.com/forum/bb-templates/kakumei/login-form.php
note: - "kakumei is the theme name, you could try replacing it with the title of your theme your using"
find this snippet of code:-
<?php printf(__('<a href="%1$s">Register</a> or log in'), bb_get_option('uri').'register.php') ?>and replace it with
<?//php printf(__('<a href="%1$s">Register</a> or log in'), bb_get_option('uri').'register.php') ?>all you doing here is blocking out this code by putting the blocks "//" which means the code (link) to the registration page is will no longer be there.
Good luck
-
- Posted 3 years ago #
Yay thank you so much, worked perfectly!
-
You must log in to post.