-
Prashant Singh replied to the topic Renaming Group tabs in the forum How-to & Troubleshooting 6 years, 1 month ago
Glad to know that it worked for you 🙂
-
Prashant Singh replied to the topic Is it possible in Buddy Press to give only permission to delete private message in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
You need to wrap those lines in this code <?php if(current_user_can(‘manage_options’)){?> //Your button code goes here <?php }?> and that is the only way you can make that button visible to admins only.
Thanks
-
Prashant Singh replied to the topic Create/add forum from frontend in the forum Miscellaneous 6 years, 1 month ago
Ok, got it now.
The above code will show the forum form on bbpress user profile, not BuddyPress.
Please try this code:
add_action('bbp_template_after_user_topics_created', 'ps_show_forum_form');
function ps_show_forum_form(){
if(bbp_is_user_home() && current_user_can('moderate')){
echo…[Read more] -
Prashant Singh replied to the topic Online members status in the forum How-to & Troubleshooting 6 years, 1 month ago
Please check this one https://wordpress.org/plugins/status-buddy/
Thanks
-
Prashant Singh replied to the topic Is it possible in Buddy Press to give only permission to delete private message in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
The first thing now we need to do is to check if that box is coming from this file or not. So try writing anything in the file and check if that gets printed on that screen if yes then certainly we are on the right file otherwise have to check which file is that from where that box is coming.
Thanks
-
Prashant Singh replied to the topic Avatar cut in mobile view in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please check this https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/ to understand the concept there.
Thanks
-
Prashant Singh replied to the topic How to overload nouveau header from plugin in the forum Installing BuddyPress 6 years, 1 month ago
Hi,
Are you sure it is member-header? Please try cover-image-header.
Thanks
-
Prashant Singh replied to the topic Filter the member list in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please check this plugin https://wordpress.org/plugins/bp-custom-functionalities/. It allows excluding of roles from members directory. You can select administrator role there in settings and they will be excluded from members directory.
Thanks
-
Prashant Singh replied to the topic Rename "Name" Profile Field in the forum Creating & Extending 6 years, 1 month ago
Hi,
Which theme you are using?
I have just checked it with the default theme twenty seventeen and it is working fine there. Please see: https://prnt.sc/l7mp20
Thanks
-
Prashant Singh replied to the topic Renaming Group tabs in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please put this snippet in your child theme’s functions.php:
function ps_rename_group_tabs() {
if ( ! bp_is_group() ) {
return;
}buddypress()->groups->nav->edit_nav( array( 'name' => __( 'Activity', 'buddypress' ) ), 'home', bp_current_item() );
}
add_action( 'bp_actions', 'ps_rename_group_tabs' );Hopefully,…[Read more]
-
Prashant Singh replied to the topic Non-static method bphelp_remove_profile_links::remove_xprofile_links() in the forum How-to & Troubleshooting 6 years, 1 month ago
It is from a third party plugin https://github.com/bphelp/bp-remove-profile-links, not BuddyPress. It seems there is no active development there from the last 5 years so you are safe to do this in the plugin, it will not be updated.
-
Prashant Singh replied to the topic BuddyPress/LearnPress Integration not working even with bridge. in the forum Installing BuddyPress 6 years, 1 month ago
Hi,
Please confirm if you are using this plugin https://wordpress.org/plugins/learnpress-buddypress/ or not?
Also when you install BuddyPress then choose template pack ‘legacy’ instead of nouveau in its settings(Settings-> BuddyPress-> Options) and then install learn press and this bridge plugin.
It seems like they are not compatible with the…[Read more]
-
Prashant Singh replied to the topic how to skip 'activate' after clicking activation link from email in the forum How-to & Troubleshooting 6 years, 1 month ago
-
Prashant Singh replied to the topic Lost setting in the forum Installing BuddyPress 6 years, 1 month ago
In Customize section please go to BuddyPress Nouveau -> General BP Settings. There you will find the option.
Thanks
-
Prashant Singh replied to the topic Delete emails and restore from defaults. in the forum How-to & Troubleshooting 6 years, 1 month ago
No, it will not list theme. Please check https://buddypress.org/support/topic/migrate-from-ultimate-member-to-buddypress/
-
Prashant Singh replied to the topic Group creation in the forum Creating & Extending 6 years, 1 month ago
200,000+
active installations and people do use it for their community site. If there is any genuine bug please let us know we will try to fix it for sure. It’s an open source project, everybody in the community is putting their effort into making it better. If you are telling a bug then you are helping the community to make it better so that next…[Read more] -
Prashant Singh replied to the topic Group creation in the forum Creating & Extending 6 years, 1 month ago
Hi,
It’s sad to hear that BuddyPress does not meet your requirements. I have used it so many times but never saw like this what you have mentioned. Is your site in the Spanish language where you tried installing BuddyPress?
Thanks
-
Prashant Singh replied to the topic who clicked on my link in the forum Miscellaneous 6 years, 1 month ago
Hi,
Please check this plugin: https://buddydev.com/plugins/recent-visitors-for-buddypress-profile/
Thanks
-
Prashant Singh replied to the topic Non-static method bphelp_remove_profile_links::remove_xprofile_links() in the forum How-to & Troubleshooting 6 years, 1 month ago
class bphelp_remove_profile_links {
function remove_xprofile_links() {
remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 );
}
}
add_action( 'init', array( 'bphelp_remove_profile_links', 'remove_xprofile_links' ));Please try replacing the above code with this code:
add_action( 'init',…
[Read more] -
Prashant Singh replied to the topic Create/add forum from frontend in the forum Miscellaneous 6 years, 1 month ago
Hi,
Please use this code:
add_action('bbp_template_after_user_details', 'ps_show_forum_form');
function ps_show_forum_form(){
if(bbp_is_user_home() && current_user_can('moderate')){
echo do_shortcode('');
}
}It will echo a form on the profile itself.
Thanks
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago