Search Results for 'buddypress'
-
Search Results
-
Can someone explain to me how to remove Active _ min/hrs ago from everyone’s member profiles, including mine as the Admin? I see that as an invasion of privacy. I’ve been researching this and it seems I would have to remove it by using/editing code. I don’t know much about that. From my admin dashboard, I know I can click on
Plugins > Editor > Select plugin to edit: Buddypress
Other than that, I am lost. There is a whole page of code along with other Plugin Files to choose from on the right-hand side.
If someone could walk me through this in simple terms, I would greatly appreciate it.I have the Twenty Fourteen theme installed on my website, if that helps.
Hello,
I would like to disable new Blog Comments recording/tracking from buddypress to wordpress but i want to keep blog post tracking. That’s why i’m not using the option in Dashboard->BuddyPress->Component setup. This option enable/disable both new Blog Comments and Blog post tracking.
In a previous version of wordpress this code was ok :
remove_action( ‘comment_post’, ‘bp_blogs_record_comment’, 10, 2 );
remove_action( ‘wp_set_comment_status’, ‘bp_blogs_manage_comment’, 10, 2 );But thoses action are now deprecated.
Can you explain me how to do that with the last version of buddypress ?
Thank you !
Currently we have a site using BuddyPress with Groups enabled. When a user is logged in, in the directory, they SHOULD see all groups that are Private or Public, but currently they are only able to see the groups in which they are members. Is this a known glitch, or do I have a setting off somewhere?
Thanks!
Hello,
Buddypress redirects to error 404 page every time a user tries to access ot a logged-in needed web page (es. http://www.buddypresswebsite.com/members/username/messages/). It causes several problems to users because when they recive an email notification for a private message and follow the link to see the conversation, if the are not logged-in an ugly error page appears (giving the feeling that on the website there is something wrong). Is that possible to:1) send users to the login page
2) send users to the initial requested url after log-inThanks for your help
TizianoHello,
I am having my site users register through a registration page setup with the Memberpress plugin. Registrants are required to submit first name, last name, username, email, and password. This information is used to fill out these items of the wp-admin/profile.php. While I would like to use the Memberpress registration form and page I would like for the buddypress profile page to remain the users’ main interface to their profile information and social activity. The problem though is that the default first name and last name fields of the Memberpress registration page don’t automatically propagate in the respective fields on the Buddypress profile page. Is there a way I can get these fields to draw from the entries for first name and last name already existing in the user databases (/wp-admin/user-edit.php) to auto-fill in the relevant fields of the Buddypress profile page? Currently after registration the last name field is empty and the first name field contains the username. Yes, the member can delete the username and enter both names again, but I’m trying to avoid this. They may wonder why they need to enter their first and last names twice. Does this make sense? I had assumed that whether registering through the Buddypress page or the Memberpress page the first name and last name would be stored in the same data table serve the same function.
My test user is still showing in the widget even though I deleted their profile from the front end.
Hello – I’m trying to figure out a way to limit what is shown in the activity stream, so that only content before the MORE tag is display. Is there a simple way to do this?
(I want to do this because I am using another membership plugin that allow content restriction after the MORE tag; however Buddypress displays in the activity stream content after the more tag even to non-logged-in users. I’d like teaser content to appear before the MORE tag in both posts, and the activity stream).
BP 2.6.2, WP 4.6.1, Genesis 2.3.1
Thanks!
KellyTopic: Eliminate buddypress pages
Buddypress Versión 2.6.1.1
Wordpress Version 4.5.4Is there a way to eliminate or block the followings pages ???
domain/members/username/settings/notifications/
domain/members/username/settings/capabilities/
domain/members/username/settingsBecause it is very important that users cant enter to those pages
I allow frontend publishing for my users, and was wondering if there was a way to add a link to their posts within their BuddyPress profile page?
Hallo everyone,
I have searched a lot true multiple forums and also here on buddypress. I’m trying to create my first plugin that ads a tab to the profile page with a bubble post count of user x account.
I found some code that archieve to create the bubble but can’t get the count to work! I need to say im not a programmer so please forgive me for that and hope to learn something why it is not working.
See the following code:
function profile_tab_advertenties() { global $bp; $count = count_user_posts( bp_displayed_user_id() , "post_type" ); $class = ( 0 === $count ) ? 'no-count' : 'count'; bp_core_new_nav_item( array( 'name' => sprintf( __( 'Advertenties <span class="%s">%s</span>', 'lang-domain' ), esc_attr( $class ), number_format_i18n( $count ) ), 'slug' => 'advertenties', 'screen_function' => 'advertenties_screen', 'position' => 20, 'parent_url' => bp_displayed_user_domain() . '/advertenties/', 'parent_slug' => $bp->profile->slug, 'default_subnav_slug' => 'advertenties' ) ); } add_action( 'bp_setup_nav', 'profile_tab_advertenties' );I used the following code from @shanepb :
$count = // code that retrieves the count $class = ( 0 === $count ) ? 'no-count' : 'count'; bp_core_new_nav_item( array( 'name' => sprintf( __( 'Animals <span class="%s">%s</span>', 'lang-domain' ), esc_attr( $class ), number_format_i18n( $count ) ), // etcAnd added some code behind the $count = // code that retrieves the count.
Are there any suggestions how i can make this to work!?
If i do the following code inside a loop it’s working perfect and output the post count of the user.
<?php echo 'Number of posts published by user: ' . count_user_posts( bp_displayed_user_id() , "post_type" ); ?>Thanks,
Patrick
I created many custom notifications on my theme, such as notification on post comments, but after a post is commented and the notification is sent, the listing of posts and of other custom post types display a 404 page.
This happens only on the listing page of posts, not on the single post pages.
I really hope in an help.
This is my code: