-
Prashant Singh replied to the topic How to Submit Registration and Redirect in the forum Creating & Extending 6 years 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
-
Prashant Singh replied to the topic Can Buddy Press use Forgot Password Key in the forum How-to & Troubleshooting 6 years ago
-
Prashant Singh replied to the topic Registration Not Working / Page Refreshes in the forum How-to & Troubleshooting 6 years 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 6 years 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 6 years ago
Please check this.
-
Prashant Singh replied to the topic [VERY URGENT] Register page not showing in the forum How-to & Troubleshooting 6 years ago
This is always created on the root of the WordPress installation. Please go to this https://www.shoutmeloud.com/how-to-edit-your-wordpress-htaccess-file.html and check how you can edit it.
Thanks
-
Prashant Singh replied to the topic How to assign admin only to show Bulk Action Drop Down in the forum How-to & Troubleshooting 6 years ago
I think here you can not register from same mail twice. So he must be a new user who copied the ticket data only.
-
Prashant Singh replied to the topic How to assign admin only to show Bulk Action Drop Down in the forum How-to & Troubleshooting 6 years ago
Happy Diwali &
Happy New Year in AdvanceWish you the same. Glad to know that it helped you.
Thanks
-
Prashant Singh replied to the topic Fatal Error in the forum How-to & Troubleshooting 6 years ago
Hi,
Try contacting your theme developers, they must have not followed the navigation API properly.
Thanks
-
Prashant Singh replied to the topic [VERY URGENT] Register page not showing in the forum How-to & Troubleshooting 6 years ago
Hi,
Why is there index.php in URL? Please try to check your htaccess file code and compare with the basic one https://codex.wordpress.org/htaccess
Thanks
-
Prashant Singh replied to the topic How to assign admin only to show Bulk Action Drop Down in the forum How-to & Troubleshooting 6 years ago
The link I just added in reply, this is your ticket right?
And where we are currently talking, this is someone else ticket or you have created from a new username?
-
Prashant Singh replied to the topic Hide members own pages from other members in the forum How-to & Troubleshooting 6 years ago
Welcome 🙂
-
Prashant Singh replied to the topic Hide members own pages from other members in the forum How-to & Troubleshooting 6 years ago
-
Prashant Singh replied to the topic How to use hooks like bp_nouveau_signup_hook? in the forum How-to & Troubleshooting 6 years ago
Not a problem. In the nouveau template, this is the way we are using hooks.
Thanks
-
Prashant Singh replied to the topic How to assign admin only to show Bulk Action Drop Down in the forum How-to & Troubleshooting 6 years ago
Hi,
Again we have to search that dropdown file and then have to wrap the code in
if(current_user_can('manage_options'))
Thanks
-
Prashant Singh replied to the topic How to use hooks like bp_nouveau_signup_hook? in the forum How-to & Troubleshooting 6 years ago
Hi,
Please try this snippet:
function my_custom_register_msg_title() {
echo '<h3>My custom text</h3>';
}add_action('bp_before_register_page', 'my_custom_register_msg_title' );
Thanks
-
Prashant Singh replied to the topic User ID in the forum Third Party Plugins 6 years ago
Hi,
The code bitboy provided works fine with the nouveau template, if you are using the legacy template then try this code:
function ps_show_displayed_user_id() {
if ( bp_is_my_profile() || is_super_admin() ) {
echo 'ID: ' . bp_displayed_user_id();
}
}add_action( 'bp_profile_header_meta', 'ps_show_displayed_user_id' );
Please try to…[Read more]
-
Prashant Singh replied to the topic Extended Profile Fields Under Photo in the forum Creating & Extending 6 years ago
Hi,
You can find it in your theme kleo/buddypress/members/single/cover-image-header.php and the code is
<?php bp_displayed_user_avatar( 'type=full' ); ?>
You need to echo your profile field just below this one.
Thanks
-
Prashant Singh replied to the topic How do I change members permalink? in the forum Ideas 6 years ago
Hi,
This will only be possible if your users have random numbers as their username.
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 6 years ago
Hi,
This is hardcoded in bbpress plugin here bbpressincludesextendbuddypressgroups.php.
Find the line
$this->slug = 'forum';
but I think changing this may create some issues but you can check if it works fine for you or not. Also changing anything in core file is never recommended because on the next update you will lose it and then have to…[Read more] - Load More
@prashantvatsh
Active 3 months, 3 weeks ago