Search Results for 'buddypress'
-
Search Results
-
Topic: Buddypress for teachers
I’m looking to have a discussion with someone who knows Buddypress (and major plugins) well. I’m thinking about a project to use Buddypress in a school environment. This may mean extending the product to add controls for teachers and data to analyze student engagement and collaboration.
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?Hello,
i hope someone can help me because i am driving myself crazy at this point. im fairly new to wordpress and thought that i would give it a shot to try and have the themes custom post “video” show up in the activity stream as well as merge their comments. finding this link in the codex, https://codex.buddypress.org/plugindev/post-types-activities/i managed to have this in my bp-custom.php
function customize_page_tracking_args() { if ( ! bp_is_active( 'activity' ) ) { return; } add_post_type_support( 'video', 'buddypress-activity' ); bp_activity_set_post_type_tracking_args( 'video', array( 'action_id' => 'new_video', 'bp_activity_admin_filter' => __( 'Published a new video', 'custom-textdomain' ), 'bp_activity_front_filter' => __( 'Video', 'custom-textdomain' ), 'bp_activity_new_post' => __( '%1$s posted a new <a href="%2$s">video</a>', 'custom-textdomain' ), 'bp_activity_new_post_ms' => __( '%1$s posted a new <a href="%2$s">video</a>, on the site %3$s', 'custom-textdomain' ), 'contexts' => array( 'activity', 'member' ), 'comment_action_id' => 'new_video_comment', 'bp_activity_comments_admin_filter' => __( 'Commented a video', 'custom-textdomain' ), 'bp_activity_comments_front_filter' => __( 'Video Comments', 'custom-textdomain' ), 'bp_activity_new_comment' => __( '%1$s commented on the <a href="%2$s">video</a>', 'custom-textdomain' ), 'bp_activity_new_comment_ms' => __( '%1$s commented on the <a href="%2$s">video</a>, on the site %3$s', 'custom-textdomain' ), 'position' => 100, ) ); } add_action( 'bp_init', 'customize_page_tracking_args' );now only some of the activity shows up as there is no thumbnail image or a comment button. i might have misunderstood but i thought this would be all i needed. also i have alread enabled site tracking, indexing and allowed comments everywhere.
here is the themes cpt registration where var $post_type = ‘video’;:
function register() { register_post_type( $this->post_type, array( 'labels' => array( 'name' => __('Videos', 'themify'), 'singular_name' => __('Video', 'themify'), 'add_new' => __( 'Add New', 'themify' ), 'add_new_item' => __( 'Add New Video', 'themify' ), 'edit_item' => __( 'Edit Video', 'themify' ), 'new_item' => __( 'New Video', 'themify' ), 'view_item' => __( 'View Video', 'themify' ), 'search_items' => __( 'Search Videos', 'themify' ), 'not_found' => __( 'No Videos found', 'themify' ), 'not_found_in_trash' => __( 'No Videos found in Trash', 'themify' ), 'menu_name' => __( 'Videos', 'themify' ), ), 'supports' => array('title', 'editor', 'thumbnail', 'custom-fields', 'excerpt', 'comments'), 'hierarchical' => false, 'public' => true, 'exclude_from_search' => false, 'query_var' => true, 'can_export' => true, 'capability_type' => 'post', 'has_archive' => 'video-archive', 'menu_icon' => 'dashicons-format-video', "taxonomies"=>array("category"), )); register_taxonomy( $this->tax, array( $this->post_type ), array( 'labels' => array( 'name' => __( 'Video Categories', 'themify' ), 'singular_name' => __( 'Video Categories', 'themify' ), ), 'public' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'show_tagcloud' => true, 'hierarchical' => true, 'rewrite' => true, 'query_var' => true, )); register_taxonomy( $this->tag, array( $this->post_type ), array( 'labels' => array( 'name' => __( 'Video Tags', 'themify' ), 'singular_name' => __( 'Video Tags', 'themify' ), ), 'public' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'show_tagcloud' => true, 'hierarchical' => false, 'rewrite' => true, 'query_var' => true, )); if ( is_admin() ) { add_filter('manage_edit-'.$this->tax.'_columns', array( $this, 'taxonomy_header' ), 10, 2); add_filter('manage_'.$this->tax.'_custom_column', array( $this, 'taxonomy_column_id' ), 10, 3); add_filter('manage_edit-'.$this->tag.'_columns', array( $this, 'taxonomy_header' ), 10, 2); add_filter('manage_'.$this->tag.'_custom_column', array( $this, 'taxonomy_column_id' ), 10, 3); } }the site is https://balalatet.com/activity/ if you’d like to see
Please helpNot sure if this is a bug or just my experience.
In Buddypress Groups member’s pages, the arrows and page numbers pagination links return the ‘No Members were found’ message in groups with more than 20 members – meaning you can’t see the other members. I have Buddypress 6.3 and WordPress 5.5.3. Happens with no other plugins active and no matter the theme (have tested Twenty Fifteen-Twenty).
‘Order by’ options also return ‘No Members were found’ message. Search does the same.
I have tried BuddyPress repair tools. I even tried deleting ALL the other plugins (on the Staging site version). Nothing works – just seems broken.
Here is a video of it: https://vimeo.com/479876989/00919cb869
Can share a private link if necessary.
Topic: Customize search result
I have created extended profile fields for my members, that I use for filtering search results. Each member has a role that can be either: ‘Mentor’, ‘Mentee’, ‘Mentor and Mentee’, ‘Not in the mentor program’.
If the role ‘Mentor’ or ‘Mentee’ is selected the members with the role ‘Mentor and Mentee’ should also be shown, is this possible?
Buddypress Version 6.3.0
Wordpress Version 5.5.3Link to websites search page: https://danwise.org/members/womens-network/
Topic: Members of group
As teacher, I am trying to use buddypress to communicate with the students and I have one group per class. This is still experimental and ‘work in progress’.
When I select a group and click on members, the page shows all the members registered on the website instead of the restricted number of this group members.
My website : http://www.rosenstiehl.net (sorry it’s French)
I use WordPress version 5.5.3–fr_FR and Buddypress Version 6.3.0Thanks for your help
Etienne RI created custom registration form. User is created by function wp_create_user.
How can I sand standard Email confirmation by BuddyPress?Thx.
Topic: Register Page is Missing
Dear Team,
I install the buddypress pluging. But the register page is missing in page section.
Please help.
Hello,
BuddyPress Activation and Registration Sites are missing ?
I use the “eduma” theme with a BuddyPress plugin, and the Activation and Registration Sites are missing ?
Shouldt those be setup automatically ?
And if not how can create or fix this problem?
This a Link to see whats it says : https://imgur.com/2KanI2Y
If I click repair it wont do anything.
Maybe I am just a stupid person but I dont how it would be creating an Activiation and Registration site manually, because the rest was created with the theme automatically.
If there is a way to fully delete the site and reinstall the theme “freshly” I would do that.
Thank you for the time and patience guys