Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,401 through 3,425 (of 72,886 total)
  • Author
    Search Results
  • #315657
    shanebp
    Moderator

    These are the forums for BuddyPress.
    BuddyBoss is a fork of BuddyPress and does some things differently.
    You may have better luck asking the folks at BuddyBoss.

    But here is a hint, instead of unset, use the filter:
    apply_filters( 'bp_rest_group_settings_forum', $fields, $group_id );
    Found here:
    buddyboss-platform\bp-groups\classes\class-bp-rest-group-settings-endpoint.php

    #315649
    johnfaig
    Participant

    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.

    #315631
    shanebp
    Moderator
    vinem
    Participant

    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!

    #315625
    Trotric
    Participant

    Hi there I am struggling to find where I can rename existing buddypress menu item titles, is there a way to do this?

    rgbadmin7
    Participant

    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.

    #315608
    iamthewebb
    Participant

    It will depend which BuddyPress template pack you are using, check the following link for nouveau https://buddypress.org/support/topic/remove-last-active-status/

    #315607
    ireallyneedhelp
    Participant

    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?

    #315606
    shanebp
    Moderator

    Work is being done on the invitations code.
    Please open a ticket and let them know about this issue.

    #315597
    wpwebdevil
    Participant

    Hi, I have the same issue.
    I want only Admin to be able to post new updates.
    Subscribers can only post comments.
    I am not using groups.
    I have tried your solutions above, but you’re not clear on exactly where to upload the file to.
    Btw – I can only find /wp-content/plugins/buddypress/bp-activity/actions/post.php

    Then I’m not sure if I should rebuild the folder structure in the child theme, or just put it in the root folder.
    Or if I should add your code at the bottom or overwrite the existing code.
    Your help will be invaluable.

    haitianguy
    Participant

    i forgot to mention my buddypress version is Version 6.3.0 on wordpress Version 5.5.3

    haitianguy
    Participant

    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 help

    peteroflynn
    Participant

    Not 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.

    #315586
    Hustl
    Participant

    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.3

    Link to websites search page: https://danwise.org/members/womens-network/

    #315579
    academia2020
    Participant

    Thanks for the reply Shane,

    I did tick the box anyone can register before I installed the theme.

    It just didnt create those 2 sites (activation; registration) but did create other sites tho.

    I really dont know if I should just manually create those and assign them to BuddyPress or try to delete everything and reinstall the theme, which wouldnt be a guranteed way to get those sites automatically…

    If you have any alternatives Shane I would love to hear them thank you for your time anyway.

    #315578
    Etienne ROSENSTIEHL
    Participant

    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.0

    Thanks for your help
    Etienne R

    cema93
    Participant

    I created custom registration form. User is created by function wp_create_user.
    How can I sand standard Email confirmation by BuddyPress?

    Thx.

    #315564
    shanebp
    Moderator

    The templates are all in the bp-templates folder.
    You can overload them to your child theme and may the changes you desire.

    Theme Compatibility & Template Files

    #315562
    findeals
    Participant

    Dear Team,

    I install the buddypress pluging. But the register page is missing in page section.

    Please help.

    #315557
    shanebp
    Moderator

    Find the template and remove the code that creates that content.
    The template is most likely in this folder:
    buddypress\bp-templates\bp-nouveau\buddypress\groups\single\

    Create a template overload and make your changes:

    Theme Compatibility & Template Files

    #315555
    iamthewebb
    Participant

    Hi @brianallenusa
    Youzer completely customises buddypress and comes with support, you will need to contact them for help.

    #315554
    brianallenusa
    Participant

    I’m having the same issue. I’m using Olympus, BuddyPress, & Youzer.

    When someone tries to add me, there is no “accept friend request” option. I only have view, hide, delete.

    Thoughts?

    – Brian

    #315550
    shanebp
    Moderator

    Did you look at any of the documentation?
    For example: https://codex.buddypress.org/getting-started/register-and-activation-pages/

    #315549
    shanebp
    Moderator

    These are the forums for BuddyPress.
    For BuddyBoss, please use their site.

    academia2020
    Participant

    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

Viewing 25 results - 3,401 through 3,425 (of 72,886 total)
Skip to toolbar