Find Answers and Get Support › Forums › Cera – Intranet & Community Theme › Installation & Updates › Theme Installation and Updates › Members Register Page problem after update
- This topic has 9 replies, 2 voices, and was last updated 3 years, 11 months ago by
Manathan.
-
AuthorPosts
-
Rossella MacchiaParticipant@rossellam
- 9 Topics
- 20 Posts
After update users can’t register. When they click on register simply they are redirect again to wp-login.php
Attached BuddyPress settings.
Thank you
May 27, 2021 at 16:11 #31854@themodactyl- 0 Topics
- 6758 Posts
Hi Rossella, 🙂
My best guess is that your issue might probably caused by some conflicting third party plugin or some extra code snippet as we don’t encounter this issue with our demos.
Could you deactivate all plugins that have not been installed with your theme during its setup and all existing custom PHP code snippets please? And then, could you confirm me that the issue is still persisting please?
Please also make sure that you have the latest theme version and that all recommended plugins are up-to-date. Finally, you could also consider clearing all activated caching system as well as your browser cache before investigating any further.
We’re waiting for your feedback.
Thank you.
May 28, 2021 at 10:52 #31903Rossella MacchiaParticipant@rossellam- 9 Topics
- 20 Posts
Hello I didn’t install any third part plugin. I have only plugins installed from theme.
June 7, 2021 at 13:48 #32206@themodactyl- 0 Topics
- 6758 Posts
Hi Rossella, 🙂
Thank you for your feedback!
It’s best if we take a quick look at this…
Could you create a new website user for us please? If possible with administrator capabilities so we can make a quick check of your settings.
You can post the user name and password in your next reply and mark it as private to keep this between us.Also, are we free to deactivate plugins for our tests? In this case, I invite you to make a backup before we investigate your website further in order to make sure you don’t loose any data if something goes wrong.
Thank you.
June 7, 2021 at 16:11 #32237Rossella MacchiaParticipant@rossellam- 9 Topics
- 20 Posts
Hello
unfortunately my site is only for internal IP as it is an intranet. When I disabled Buddypress plugin registration page worked fine.
June 15, 2021 at 14:38 #32573Rossella MacchiaParticipant@rossellam- 9 Topics
- 20 Posts
as old, when Buddypress is disabled I clck on register and I land to : https://mysite.com/wp-login.php?action=register
with Buddypress: https://mysite.com/wp-login.php?redirect_to=https%3A%2F%2Fmysite.com%2Fregister%2F&reauth=1
maybe I need to change this link somewhere?
June 15, 2021 at 17:36 #32575@themodactyl- 0 Topics
- 6758 Posts
Hi Rossella,
Thank you for your feedback. Unfortunately, without taking a look, it’s difficult to find from where this issue is coming from.
Can you please try these actions:
- Deactivate Paid Membership Pro to see if this issue still persists. If not, this issue is related to a misconfiguration of this plugin.
- If this issue persists, can you please send me a screenshot of your homepage? I need to see how you decided to display this button as there are two ways with our theme.
We’re waiting for your feedback.
Cheers,
June 16, 2021 at 09:50 #32586Rossella MacchiaParticipant@rossellam- 9 Topics
- 20 Posts
This reply has been marked as private.June 16, 2021 at 15:18 #32606Rossella MacchiaParticipant@rossellam- 9 Topics
- 20 Posts
Hello so far I’ve solved like this:
I added bp-custom.php in /wp-content/plugins
this is code:
<?php
/**
* Disables BuddyPress’ registration process and fallsback to WordPress’ one.
*/
function my_disable_bp_registration() {
remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );
remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ );
}
add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ );add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”);
function firmasite_redirect_bp_signup_page($page ){
return bp_get_root_domain() . ‘/wp-login.php?action=register’;
}
?>June 16, 2021 at 16:15 #32607@themodactyl- 0 Topics
- 6758 Posts
Hi,
I’m glad to read you’ve been able to solve this Rossella.
We thank you very much for sharing the solution with us. I’m sure it will help other users facing the same issue. By doing this, you’re making a great contribution to this forum, and we thank you very much for that! #SharingIsCaring 💪🏻
We remain available for all support requests related with the use of your theme.
Regards,
June 17, 2021 at 10:31 #32614 -
AuthorPosts
The topic ‘Members Register Page problem after update’ is closed to new replies.