-
Prashant Singh replied to the topic Edit Profile showing GMT for users in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Please check this thread: https://buddypress.org/support/topic/buddypress-last-seen-privacy/
Thanks -
Prashant Singh replied to the topic How to edit Registration Page in the forum Installing BuddyPress 6 years, 2 months ago
Hi,
To change the email content please find the respective mail on emails tab(dashboard->emails). It will be ‘activate your account’ mail that you need to edit.
To change the registration confirmation you can use any language translation plugin like loco translate and find the message there and translate it to your text.
Thanks
-
Prashant Singh replied to the topic Group Page Not Showing in the forum Installing BuddyPress 6 years, 2 months ago
Hi,
Please check on the users panel(dashboard->users->manage signups) that if they are activated or not ?
If yes, then there may be any plugin or custom code creating the issue, try disabling them and also check once by activating default theme.
Thanks
-
Prashant Singh replied to the topic Plugin to give user limited/no rights in the forum Third Party Plugins 6 years, 2 months ago
Hi,
Please check this link: https://www.wpbeginner.com/wp-tutorials/how-to-remove-the-password-reset-change-option-from-wordpress/
Thanks
-
Prashant Singh replied to the topic register problem in mobile in the forum Installing BuddyPress 6 years, 2 months ago
Hi,
Have you trued this on real device ?
Please check if there is any error in console.
Thanks
-
Prashant Singh replied to the topic Put BuddyPress into a page area in the forum How-to & Troubleshooting 6 years, 2 months ago
We already have sidebar for BuddyPress(Members sidebar), you can use your widgets there as well and it will show on buddypress members pages.
For other solution, you can override buddypress templates and then can call your sidebar in template as well.
Thanks
-
Prashant Singh replied to the topic Upload Avatar in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Can you please try by putting a real member slug in place of [wlm_username]?
Thanks
-
Prashant Singh replied to the topic Updating Profile in the forum How-to & Troubleshooting 6 years, 2 months ago
add_action('xprofile_updated_profile', 'ps_redirect_welcome', 1, 5);
function ps_redirect_welcome( $user_id, $posted_field_ids, $errors, $old_values, $new_values )
{
if ( empty( $errors ) )
{
wp_redirect('your welcome page url');
exit ;
}
}Please try this code and add your welcome page url in place…[Read more]
-
Prashant Singh replied to the topic How to stop that users can visit other user profiles if they guess the user url in the forum Installing BuddyPress 6 years, 2 months ago
-
Prashant Singh replied to the topic Profile page showing only Name !!! in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
If you will have anyother profile field then it will be listed there after name.
Thanks
-
Prashant Singh replied to the topic Changing Avatar based on field data in the forum Creating & Extending 6 years, 2 months ago
Hi, please check the following code:
function buddydev_create_css_class_based_on_profile_field_data( $class, $object, $params ) {
$field_id = 25; //Professional Title field Id
$professionaltitle = xprofile_get_field_data( $field_id );
$professionaltitle = strtolower( $professionaltitle);
$class =…[Read more] -
Prashant Singh replied to the topic Is there any good plugin for live chat box in the forum Installing BuddyPress 6 years, 2 months ago
Hi,
Please check these plugins:
Thanks
-
Prashant Singh replied to the topic buddypress is forcing my landing page to be My-Account page instead of home. in the forum Installing BuddyPress 6 years, 2 months ago
Yeah, As shane said it’s not default BuddyPress feature. You must have any plugin there that is creating that page and restricting from seeing home page.
Thanks
-
Prashant Singh replied to the topic How to add ClassName to am avatar in the forum Installing BuddyPress 6 years, 2 months ago
Hi,
I know you want to use BuddyPress function only but as an alternative you should use this one if you want to add class there:get_avatar( bp_displayed_user_id(), $size = ‘150’, ‘default_image_url’, ‘alt_text’, $args = array( ‘class’ => array( ‘newClass’ ) ) );
For other solution, paste the following in your child theme’s functions.php…[Read more]
-
Prashant Singh replied to the topic How to remove "replies" in the forum Installing BuddyPress 6 years, 2 months ago
Hi, Please try the following code:
function my_remove_replies_subnav(){
[Read more]
global $bp;
if ( $bp->current_component == $bp->forums->slug ) {
bp_core_remove_subnav_item( $bp->forums->slug, 'bbp-replies' );
bp_core_remove_subnav_item( $bp->forums->slug );
}
}
add_action( 'wp', 'my_remove_replies_subnav', 2… -
Prashant Singh replied to the topic Activity Stream….attach pictures — normal? in the forum How-to & Troubleshooting 6 years, 2 months ago
Basically there are multiple plugins that allows to upload media and the plugin I gave you should work for sure to upload image in activity. Anyways, you can try this one as well https://wordpress.org/plugins/buddypress-media/
-
Prashant Singh replied to the topic I need Help in the forum Installing BuddyPress 6 years, 2 months ago
Hi,
Actually there are number of plugins that works perfectly for front-end blog posting.
Like : https://wordpress.org/plugins/accesspress-anonymous-post/
Please try them once.
Thanks
-
Prashant Singh replied to the topic Groups keep logging me out in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
This seems to be a plugin conflict or any custom code issue. Try disabling plugins and test then and also try switching to default theme and see if it is happening there also or not.
Thanks
-
Prashant Singh replied to the topic How do I customise the output of the Network Wide posts widget? in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Try overriding the widget code in child theme and the edit it there.
You can find the file at buddypress->bp-blogs->classes->class-bp-blogs-recent-posts-widget.php
Thanks
-
Prashant Singh replied to the topic Widget for group forum activity in the forum Third Party Plugins 6 years, 2 months ago
Hi,
It will need some custom work and you can take reference from https://bbpress.org/forums/topic/display-list-of-topics-under-specific-forum/
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago