Search Results for 'buddypress'
-
Search Results
-
Topic: profile page dont show
I installed buddypress but when I clicked a user’s link on the members page it directs me to the profile page but it does not show anything. how do i fix that
Topic: Profile page
I would like to get the generic link of Buddypress profile page, and create a button to redirect users to their own profile page. I suppose is a dynamic link, but I cannot find it. Is it possible?
Other way, if I get the profile page shortcode, maybe I could paste it into a new page and use it like the profile page for all the users?
Thanks for the help.
Topic: User registration button
Hi there, is it possible to force the User registration button that is generated by Buddypress to open in a new tab? Thanks
A while ago, all of my BuddyPress emails disappeared, so I used the BuddyPress Repair Tools to reinstall the emails. Shortly after that, I noticed that all of the pages o my site were returning 404 errors. But it was only affecting pages, the homepage and all posts displayed fine. I did a quick Google search and found that you can fix this by going to the permalink page in the WordPress admin console and clicking “save” without making any changes. Everything came back up. The next day and every day since then the 404 errors have come back. It never comes back immediately, but within 24 hours it happens. I can’t find any errors (although I’ll admit I’m not the best at reading logs). I can’t figure out where the pages are being redirected. I can’t figure out how to replicate the problem.
Topic: Multiple Registration
Is there a options to make Multiple Registration in the BuddyPress ? O plugins or something else ?
Hello. Brand new install of WP 5.5.3 and BuddyPress 6.3.0 on a server running MySQL Version
5.6.32 & PHP Version 7.4.10 with NO OTHER plugins active & running on 2020 template.On Page: https://www.rolevant.com/members/rolevantist/profile/change-avatar/
I can upload the image and am given the option to crop the uploaded image. However, once I select my crop area and I press the crop button the <upload & crop> area disappears & a red box WITH NO MESSAGE appears. Nothing else happens.
The original files are being uploaded to
https://rolevant.com/wp-content/uploads/avatars/1/…But no automatically resized or manually cropped images are being saved anywhere.
Other similar Avatar Crop issues from 8-10 years ago exist on this forum, but nothing that is applicable to these latest versions. Any & all fixes (incompatable javascipt, JQuery, AJAX version incompatibility with JQUERY/AJAx versions called by templates) are just not relevant here. Please Help!!!
Brand new to Buddypress and still figuring everything out.
I just found out today myself when I clicked on a Buddypress notification email I got that if you’re not logged in the default notification email link takes you to the homepage and tells you nothing about needing to be logged in. It took me a while to figure out that I needed to be logged in.
Obviously, I can edit the email that goes out, but what I am wondering is if there is a way to make it so instead of just being sent to the homepage when they are not logged in, that clicking on the link would take them to a login page and then once logged in, take them immediately to whatever thing they had clicked the link for in the email?
Hi there,
I found this article on how to add a new tab in the Buddypress profile menu > https://blog.maximusbusiness.com/2013/06/buddypress-profile-custom-bp-menu/.
I haven’t tried it yet because I’d like to know, before I mess up anything, if it’s possible to display posts from specified categories and how to achieve it.So, my users can send 2 types of posts : Galleries and Services. The first one is a basic Gallery system, users post pictures and that’s it. The second one is a classic text post with informations.
I need to split them in the Buddypress profile nav menu.How can I tell Buddypress “in this tab you get the posts from these categories”?
Thank you for your time and help!
hello team, i need to add my blog categories to my buddypress activity Stream, just like i saw on this thread: https://buddypress.org/support/topic/including-post-categories-in-the-activity-stream/
The girl in that thread found a code and solved it but i still don’t know where to paste that code:
if( $post->post_type == ‘post’ ) {
$activity_action = sprintf( __( ‘%1$s added the post, %2$s in the categories %3$s’, ‘buddypress’ ), bp_core_get_userlink( (int) $post->post_author ), ‘‘ . $post->post_title . ‘‘, get_the_category_list( ‘, ‘, ”, $post->ID ) );
}
Please guys, someone give me a hand with this.
Topic: Remove Time Last Active
I want to remove time last active on my wp and bp site. On the member page, I don’t want it to show up. I tried adding #buddypress span.activity {
display: none!important;
} as css, but it didn’t work. I also tried
/* remove “not recently active” */
function bpfr_core_get_last_activity( $last_activity_date, $string ) {
if ( empty( $last_activity_date ) )
// we do nothing
$last_active = ”;
else
$last_active = sprintf( $string, bp_core_time_since( $last_activity_date ) );
}
add_filter( ‘bp_core_get_last_activity’, ‘bpfr_core_get_last_activity’ );/* remove whole recently active filter */
function bpfr_remove_last_activity_filter() {
remove_filter( ‘bp_core_get_last_activity’, $last_active, $last_activity_date, $string );
}
add_filter( ‘bp_core_get_last_activity’, ‘bpfr_remove_last_activity_filter’ ); to my functions.php file, but that didn’t work either. What should I do?