@chase8705 when you go to the register page while you’re still logged in, default behavior is to go to home page. Log out first before going to registration page.
Ok I did that but then it took me to my Log In page but it says “User Registration Is Currently Not Allowed.” So I went into my general setting of wordpress and went to go check the “Anyone Can Register” box but it is greyed out. How can I make it so that anyone can register?
@chase8705 disable plugins, default theme and check if it’s still greyed out
@mattg123 If I do that, will it mess up anything that I already have on my site?
WP/BP versions? What theme are you using? What plugins are installed?
https://buddypress.org/support/topic/when-asking-for-support-2/
wp 3.5.1 / bp 1.7.2 Theme – WP Prosper. lots of plugins. lol @mercime
@chase8705 disabling and enabling a plugin shouldn’t cause any problems, some save settings permanently however. Anyway, the fact you have “lots” of plugins, is probably the issue and the quickest solution is to disable them and check to see if the problems fixed.
@mattg123 ok. I will give it a try. Is it bad to have a lot of plugins?
@chase8705 btw, your theme’s not including wp_footer by the looks of things and many plugins use it, go edit your footer and wrap wp_footer(); in php tags
@mattg123 I’m kind new at this. Are you able to help me understand how to do that? I’m not trying to be a burden. If you can’t that’s ok. I appreciate your time.
having lots of plugins isn’t “bad” but the more you have, the more problems that can crop up, load times, compatibility etc etc etc
to locate your themes footer, go to your dashboard>appearance>editor and locate footer.php you’ll probably find wp_footer(); on its own, it needs to be <?php wp_footer(); ?> @chase8705
Got it! I just did that. How does it look now? @mattg123
@chase8705 you’re using a caching plugin so I probably can’t see any changes, as long as you wrapped it in php tags everything’s good.
Oh ok. well I did that. I will try to deactivate and reactivate the plugins and see if it helps. @mattg123
Did you make any changes in your template files? Something’s wrong with your theme. I see wp_footer();
near the bottom of the webpage. Open up your theme’s footer.php or the home page template and make sure that near the bottom of the file, instead of wp_footer();
, it should be <?php wp_footer(); ?>
Correct the code first, then check registration again.
That did it. I had S2Member plugin that was blocking it from allowing anyone to register. So I deactivated S2Member and WA LA! It now works. Thank you @mattg123 and to everybody who helped. I really do appreciate it.