Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 2,976 through 3,000 (of 69,061 total)
  • Author
    Search Results
  • 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.

    #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

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

    #315546

    In reply to: Delete of mail format

    shanebp
    Moderator

    Do not delete any of the email formats.
    Create the bp-custom.php and place the disable filter in it.

    bp-custom.php

    #315542

    In reply to: Delete of mail format

    ronald1993
    Participant

    In addition, I have tried to use the Disable BP email filter from the codex, but I don’t have the bp-custom.php either.

    #315533
    iamthewebb
    Participant

    What have you tried to diagnose the problem so far?
    Have a quick read through https://buddypress.org/support/topic/when-asking-for-support-2/
    Have you tried using a supported theme such as twenty twenty, disabled other plugins etc?

    #315528
    davisdes
    Participant

    I am having an issue with my buddypress website located at devotedfellowship.org… Anytime someone registers, it saves a random password in the database. After they activate their account with email validation and try to login, it tells them that the password is incorrect for the username. However, once they use the password reset link and reset their password, it all works nicely.

    I need this fixed, as most my users will not go through all that hassle. I have disabled all non buddypress mandatory plugins and the issue persisted. I have reenabled them for the time so my current users can use the site. I have also made sure my buddypress and my wordpress versions are both updated to current and they were.

    Any help would be amazing and well received. Thanks,

    Matt

    #315520
    ronald1993
    Participant

    Hello,

    I am using buddypress for my Intranet page.

    Now I am using a plugin to restrict my website from sending e-mails to users, as I don’t want it to send alot of mails to my users for no reason.

    In the admin menu theres a tab called “Buddypress e-mail” with alot of formats inside.
    If I delete a format, does this mean it will never send an e-mail when, according to when it triggers, it should have sent an e-mail?

    I don’t want to delete any formats and break my website.

    #315511
    Naomi
    Participant

    Ok will do. Do you know of any plugin that you can recommend to make Buddypress Private and allows for approval required registration?

    #315509
    Naomi
    Participant

    “BP Registration Options” plugin makes Buddypress elements private, but it should redirect users to the registration page, not the home page so users know they have to login. Is that a bad plugin? Are there any other plugins that work?

    Naomi
    Participant

    I’m running WordPress 5.5.3 running Executive Pro theme. Using Genesis 3.3.3.

    When a logged out user tries to access the community pages = Activity, Members, Groups, or Forum, it redirects them to the home page. I want it to direct them to the Register page so they know there is a community they can register for.

    In Settings > Buddypress > Pages I have the following set:

    Register > Register
    Activate > Activate

    When I click on “View” from there, it takes me to the home page (but I am logged in at that point since it’s the backend.)

    Please help. The activity page is here:

    Activity

    I am also running BP Registration Options in order to make BUddypress areas private.
    Thank you.

    #315499
    mkbond
    Participant

    Does anyone know how to incorporate replying to BuddyPress discussions within the activity feed? We are using the BuddyBoss platform and BuddyBoss custom theme.

    We are trying to be a mainly forum/discussion-based site and we don’t use WP comments. So I want to have users be able to just click a “Reply” button in the activity feed to reply right there, versus being redirected to a new page (similar to Facebook’s reply/comments but for discussions).

    We don’t modify the core files, only modify through child theme. We are also running bbPress through BuddyBoss. We have GoDaddy hosting with a LAMP managed server setup.

    WordPress v5.5.3
    BuddyBoss Platform v1.5.3
    BuddyBoss Theme 1.6.0

    #315479
    evo252
    Participant

    Hi!
    Is there a PHP function or anything else to skip the cropping step of avatar after uploading a photo? A way to crop automatically the avatar for instance?
    Because the cropping step is not useful, especially on smartphones.
    Thanks!

    #315470
    lordmazus
    Participant

    Hello, I have Avada Theme installed.
    The Activity Feed like mysite.com/activity/ work well (when go directly). If I go to
    mysite.com/members/wp_123456/activity/ the some parts of Avada template doesn’t view (its like a 404 error but with content).
    I can show all buddypress content without avada template part because it know that page mysite.com/members/wp_6270831/activity/ doesn’t exist.

    Another example: If I go to mysite.com/groups work well
    If I go to mysite.com/members/wp_123456/groups/ “Page doesnt’ exist” (for avada) but show the bb content.

    #315467
    sx1001
    Participant

    I meant this link here: https://wordpress.org/support/topic/buddypress-profile-change-password-skipped/
    Here someone is complaining about it as well.
    So right now, no solution on the internet 🙁

    #315459
    tradonne
    Participant

    Ciao da alcuni giorni è impossibile inviare messaggi ho provato a disinstallare tutti i plugin ma niente non scrive il nome dell’utente e non si riesce ad inviare i messaggi
    versione wp 5.5.3
    buddypress Versione 6.3.0
    link del mio sito https://www.tradonne.com/

    #315457

    In reply to: BuddyPress Page Issue

    shanebp
    Moderator

    Did you assign those pages to BP components?
    Go to wp-admin > Settings > BuddyPress > Pages.

Viewing 25 results - 2,976 through 3,000 (of 69,061 total)
Skip to toolbar