-
Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 7 years, 5 months ago
https://wordpress.org/plugins/code-snippets/ Please add this plugin and then in snippets add a new snippet and paste the code.
Thanks
-
Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 7 years, 5 months ago
add_filter( 'bp_core_signup_send_activation_key', 'ps_disable_activation_email' );
function ps_disable_activation_email() {
return false;
}Please try this code.
-
Prashant Singh replied to the topic [VERY URGENT] Register page not showing in the forum How-to & Troubleshooting 7 years, 5 months ago
Welcome 🙂 Glad to help you.
-
Prashant Singh replied to the topic How to Submit Registration and Redirect in the forum Creating & Extending 7 years, 5 months ago
function ps_bp_redirect($user) {
$redirect_url = 'your_url_here';
wp_safe_redirect( add_query_arg( array( 'user' => $_POST['signup_username'] , 'email'=> $_POST['signup_email']), $redirect_url ) );
}
add_action('bp_core_signup_user', 'ps_bp_redirect', 100, 1);This code will add query parameters in the URL itself, from there try to…[Read more]
-
Nahum replied to the topic How to Submit Registration and Redirect in the forum Creating & Extending 7 years, 5 months ago
Thanks for the suggestion, I think I tried that and my problem there was getting what the user inputted username and email to add to the url in order to prepopulate the next form. I can’t auto log them in quite yet to get current user info.
What I ended up doing was this with a plugin:
<script…[Read more] -
Prashant Singh replied to the topic Problem Profile Visibility Settings in the forum Installing BuddyPress 7 years, 5 months ago
Hi,
That is a default profile field and you can not change the visibility of that. But if you will create other profile fields then you will be able to change their visibility easily.
Thanks
-
Prashant Singh replied to the topic Can Buddy Press use Forgot Password Key in the forum How-to & Troubleshooting 7 years, 5 months ago
Happy New Year to you and your family.
Wish you the same.
I think you can go for a custom reset password solution: https://code.tutsplus.com/tutorials/build-a-custom-wordpress-user-flow-part-3-password-reset–cms-23811
Thanks
-
Prashant Singh replied to the topic ARGH — A 'horizontal ellipsis' is preventing display of 'group description' in the forum How-to & Troubleshooting 7 years, 5 months ago
Hi,
I have tested the same with one of the default themes twenty-seventeen. Please see: https://prnt.sc/lfu9f6
As you can see I am on the page where all the groups are listed, I am a member of. So it seems the theme you are using is creating that issue.
Thanks
-
Prashant Singh replied to the topic How to display this type of header? in the forum Creating & Extending 7 years, 5 months ago
Hi,
It will need a custom header designing work. There is no such code for that.
Thanks
-
Prashant Singh replied to the topic How to Submit Registration and Redirect in the forum Creating & Extending 7 years, 5 months ago
function ps_bp_redirect($user) {
$redirect_url = 'your_url_here';
bp_core_redirect($redirect_url);
}add_action('bp_core_signup_user', 'ps_bp_redirect', 100, 1);
Please try this snippet.
Thanks
-
Info panduan Dewapoker Terbaru dan Terbaik's profile was updated 7 years, 5 months ago
-
RajaPkv's profile was updated 7 years, 5 months ago
-
Joey Lewis's profile was updated 7 years, 5 months ago
-
Nahum started the topic How to Submit Registration and Redirect in the forum Creating & Extending 7 years, 5 months ago
Trying to pass some input info over to another form right after full registration that users need to fill out before being able to login to the site. The email and username are sent over to sync accordingly. I’ve gotten this far…but I guess the redirect cancels the form submit and the wp user needs to exist so they can login after the 2nd…[Read more]
-
Prashant Singh replied to the topic Can Buddy Press use Forgot Password Key in the forum How-to & Troubleshooting 7 years, 5 months ago
-
Prashant Singh replied to the topic Registration Not Working / Page Refreshes in the forum How-to & Troubleshooting 7 years, 5 months ago
Hi,
Please enable debug mode by changing
define( 'WP_DEBUG', false);todefine( 'WP_DEBUG', true );
Then you will be able to see the error.Thanks
-
Prashant Singh replied to the topic NEED to change the default path (slug) that is created for group forums in the forum How-to & Troubleshooting 7 years, 5 months ago
Welcome 🙂
Glad to know that it helped you 🙂
-
Prashant Singh replied to the topic Changing URL Structure of BuddyPress in the forum How-to & Troubleshooting 7 years, 5 months ago
Please check this.
-
's profile was updated 7 years, 5 months ago
-
Bit Boy replied to the topic Changing URL Structure of BuddyPress in the forum How-to & Troubleshooting 7 years, 5 months ago
Hi,
It is possible to make it so but in that case profile needs to be default component.Try adding
define( 'BP_DEFAULT_COMPONENT', 'profile' );
to your bp-custom.php and see if it suits your need.
Regards
B - Load More