Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 2,201 through 2,225 (of 69,061 total)
  • Author
    Search Results
  • #320574
    richardrcook2
    Participant

    Hello. I’m using the Twenty Fifteen theme. WP version 5.8. BP version 9.0.0.

    On my members page, the Last Active list (of members) worked well for the past several years. But now, after I went into Tools > BuddyPress > Repair and repaired all of the items on the list, the members page’s Last Active list isn’t working the same. The members page no longer tells me who was active last unless a member signs in after this change occurred, but all of the other members below him or her on the list tells me that they’ve been active months ago, which may and may not be the case.

    I know that there have been other members who have been active much more recently, but the page isn’t giving me that correct information the way it did before I repaired those items.

    Can anybody help me with this problem please? Let me know if you need more information or if you need me to explain my problem better. Thanks.

    #320571
    djavco
    Participant

    WordPress 5.8
    BuddyPress 9.0.0

    I am trying to make the Group Description field a rich text field for Group admins so they can enter links and basic formatting.

    I have tried to achieve this with various methods including using BuddyPress Groups Extras but the option to enable ‘Rich Editor for Fields’ does not work – each time I enable this radio button and save the settings it reverts to being disabled.

    I have also looked into enabling the RichText editor for certain BuddyPress fields with a filter in bp-custom.php but it seems that WordPress has changed how it handles rich text fields and I cannot find any guidance on how to do this.

    Any help or pointers would be much appreciated.

    #320560
    mariaat
    Participant

    Trying for days now to find out why I can’t get certain words ytanslated into Dutch. I have used Locotranslate but I can’t translate the Directory-names and the meta “posted by”. U use stable.po- en -mo. files. Created a file content/languages/Buddypress/ but no changes.
    Anyone tips? thanks in advance!

    Screenshot: Screnshot

    wordpress 5.8
    BuddyPress 9.0.0
    Link to the site: https://xpartij.nl/

    #320557
    StudentFilmmakers
    Participant

    Anyone have any procedural help or know of a plugin or service to move our users from socialengine to buddypress? Even just the users names and their login information would be good enough. Any help to to get off the socialengine and use buddypress is appreciated. Even manually doing it one at a time is almost an option at this point. Please let us know.

    Current version: 5.8
    http://www.studentfilmmakers.com

    #320531
    benrobin
    Participant

    Hi, I think it depends if what you’re goal is.

    1) If you want visitors interact with another visitor (like Facebook) or allow users to post content. Then read this link >> 8 Best BuddyPress Themes for WordPress <<. Buddypress works and functions with almost any WordPress theme though.

    2) If you want just a blog website like only you can post an article and just wait for another visitor to comment. Then you’ll just need to install WordPress. Any wordpress theme will do.

    Now, for the installation. There are various tutorials in Youtube on how to install wordpress, themes and plugins. Or if you’ll trust me, you can send me an email to “ben.dzn@gmail.com”. I’ll help you for free (it depends though if I’m not busy).

    benrobin
    Participant

    Hi, I am wondering if where could I find the total number of notifications in database? I search it up in the source code and I found

    $notification_item->total_count

    However, I can’t find a column or any value in the database.
    I need to delete all notification counts because some intruders successfully registered my Buddypress and he/she send all spam messages to all my users. I already deleted all the messages, but counted notifications are remained. Kindly, help me. Thanks.
    Buddypress Notification Count

    #320510
    ririshi
    Participant

    Hey there. I just ran into the same issue and fixed it by replacing an old (deprecated in BP 8.0.0) call to bp_nouveau_base_account_has_xprofile() with bp_nouveau_has_signup_xprofile_fields(true). The true is very important as it will initialize the global variable $profile_template, which is used by bp_profile_groups() (the function that is erroring). You’d have to change this in the overwritten buddypress register.php template, used by your theme. My template probably looks different from yours, so I can’t provide the specific lines that you’d have to make changes to. Good luck!

    #320505
    knowmates
    Participant

    Hello,

    in our registration form we have two areas with the following fields (all required):

    Account details (WordPress):
    – field “user name”
    – field “email”
    – field “choose a password”
    – field “repeat chosen password”

    Profile details (BuddyPress):
    – field “name”
    – field “first name”
    – field “last name”

    Actually we don’t need the fields “user name” (WordPress) and “name” (BuddyPress).

    We want to use only first name and last name (no user name, name, nickname, whatever). Is that possible?

    With that we want to make the registration easier to our users and we also want to sort the members directory according to the last name. Is that also possible?

    Best regards

    #320491
    shanebp
    Moderator

    This is a known bug. It will be fixed in the next release.

    Earl_D
    Participant

    How to get the BP profile pic to be used as the wordpress avatar

    #320485
    tngam1013
    Participant

    Everything is set up on my website, but whenever someone registers, they do not receive the activation email required for validating their account. This is a big security issue that I have yet to find a solution to. I have seen the Auto Authenticate Plugin, which again, is a huge security issue. My WP Version is 5.8, my BuddyPress Version is 9.0.0. My website is https://buckeyestategaming.com

    Any assistance with this issue would be greatly appreciated.

    sx1001
    Participant

    I have a code / plugin which derivates a list of UserIDs by some logic which I want to display in a separate page in a sort of members loop.

    I tried similarly to this code, setting the args and than loading the template, it simply does not display the members:

    
        $members_args = array(
    			'include'         => array(list of user ids here ... 1, 13, 25, 126, ...),
    			'exclude'         => array(bp_loggedin_user_id()),
    			'per_page'        => $max_members,
    			'max'             => $max_members,
    			'populate_extras' => true,
    			'search_terms'    => false,
    		);
            
    	echo '<div id="buddypress" class="buddypress-wrap bp-dir-hori-nav bp-shortcode-wrap">';
    	echo '<div class="members">';
    	echo '<div class="subnav-filters filters no-ajax" id="subnav-filters">';
    	bp_get_template_part( 'common/filters/grid-filters' );
    	echo '</div>';
    	echo '<div class="screen-content members-directory-content">';
    
    	echo '<div id="members-dir-list" class="members dir-list">';
    
        buddypress()->current_member_type = "my separate loop";
        buddypress()->current_component   = 'members';
        buddypress()->is_directory        = true;
    
    	// Get a BuddyPress members-loop template part for display in a theme.
    	bp_get_template_part( 'members/members-loop' );
    
    	echo '</div>';
    	echo '</div>';
    	echo '</div>';

    I also tried instead to modify the query args like so instead of setting $members_args, but this does not work neither:

    
        $include = array(1, 13, 25, 126, ...); # list of user IDs to show
        add_filter ('bp_ajax_querystring', 'modify_directory', 20, 2);
        function modify_directory ($query_string, $object)
        {
            if ($object != 'members')  return $query_string;
    
            if (!empty ($query_string))  
                $query_string .= '&';
    
            $query_string .= 'include='. implode(',', $include).'&exclude='.bp_loggedin_user_id();
            return $query_string;
        } 

    Any idea?

    #320464
    tarunweb1
    Participant

    Hello Guys,

    I am creating a post subscription. When any user subscribe to any post I want to send them notifications about comments and post activities. I am adding custom notifications to buddypress. Notifications are adding but in frontend the title of notification is not showing. I checked many forums but did not find any solution.

    Below is my code:

    
    public function __construct() {
          
          add_filter( 'bp_notifications_get_registered_components', array($this,'custom_filter_notifications_get_registered_components'),20 );
          add_filter( 'bp_notifications_get_notifications_for_user', array($this,'custom_format_buddypress_notifications'), 10, 7 );
          add_action( 'wp_insert_comment', array($this,'bp_custom_add_notification'), 99, 2 );
       }
    
    For custom component
    
    public function custom_filter_notifications_get_registered_components( $component_names = array() ) {
     
           // Force $component_names to be an array
           if ( ! is_array( $component_names ) ) {
               $component_names = array();
           }
        
           // Add 'custom' component to registered components array
           array_push( $component_names, 'custom' );
        
           // Return component's with 'custom' appended
           return $component_names;
       }
    
    For notification formatting
    
    public function custom_format_buddypress_notifications( $content, $item_id, $secondary_item_id, $total_items, $format = 'string', $action, $component ) {
         	   
             if ( 'custom_action' === $action ){
               $comment = get_comment( $item_id );
            
               $custom_title = $comment->comment_author . ' commented on the post ' . get_the_title( $comment->comment_post_ID );
               $custom_link  = get_comment_link( $comment );
               $custom_text = $comment->comment_author . ' commented on your post ' . get_the_title( $comment->comment_post_ID );
        
               // WordPress Toolbar
               if ( 'string' === $format ) {
                   $data_to_return = apply_filters_ref_array( 'custom_filter', '<a href="' . esc_url( $custom_link ) . '" title="' . esc_attr( $custom_title ) . '">' . esc_html( $custom_text ) . '</a>', $custom_text, $custom_link );
                   
        
               // Deprecated BuddyBar
               } else {
                   $data_to_return = apply_filters_ref_array( 'custom_filter', array(
                       'text' => $custom_text,
                       'link' => $custom_link
                   ), $custom_link, (int) $total_items, $item_id, $secondary_item_id );
               }
               
             return $data_to_return;     
          } else{
             return $action;
          } 
       }
    
    For adding notification
    
    public function bp_custom_add_notification( $comment_id, $comment_object ) {
     
          $subscribed_user =  get_post_meta( $comment_object->comment_post_ID , 'subscribed_user',true ); 
          
          if(!empty($subscribed_user) && is_array($subscribed_user)){
             for ($i=0; $i < count($subscribed_user); $i++) { 
          		 if ( bp_is_active( 'notifications' ) ) {
                      bp_notifications_add_notification( array(
                         'user_id'           => $subscribed_user[$i],
                         'item_id'           => $comment_id,
                         'component_name'    => 'custom',
                         'component_action'  => 'custom_action',
                         'date_notified'     => bp_core_current_time(),
                         'is_new'            => 1,
                       ) );
          		 }
             }
          }   
       }
    
    

    Please suggest best possible way to fix this issue.

    Thank You

    #320457
    dasuccessltd
    Participant

    Hello guys, i made changes to my menus on appearance in WordPress , i checked buddypress but everytime i make changes it doesnt reflect on the login page, how can i resolve it i want to make changes to the menu displaying on the login page of buddypress

    Willy Chung
    Participant

    installed gd library php in xampp

    but not working

    #320447
    shanebp
    Moderator
    #320432

    sorry…
    I used buddypress 7.0.1 bp-nouveau templates to fix it.

    #320431

    I located de error in the themes rebuild:
    buddypress\bp-templates\bp-nouveau

    When I replace this folder in version 9.0. With the one I used in version 8.0 the widget location reappears.

    Could you fix this bug?

    #320430

    Hello,
    I have WordPress 5.7 and buddypress 8.0. When I upgrade to buddypress 9.0. A widget location (“BuddyPress member home page”) that I was using for render some html code in buddypress profile has disappears.

    I tried upgrading WordPress in case the problem was related to the new widget manager. But the problem persists.

    Any recommendations on how to get that widget location to appear again?

    #320427
    NicCrockett
    Participant

    It’s not a big deal, I’m not looking for BuddyPress to have support for Elementor. However, I do find it interesting that a simple redirect from BuddyPress breaks Elementor. The page I created is separate from BuddyPress and successfully works with or without the BuddyPress Register redirect set-up correctly. I would think telling BuddyPress what page to use for the Register page would be a simple redirect and independent of BuddyPress. Thus support for Elementor would be irrelevant. I realize there may be more at work than I can see, just my two cents. Either way, I think BuddyPress is a great plug-in, I just wanted to offer some feedback about the issue I found. Good luck with the future of the plug-in!

    #320426
    shanebp
    Moderator

    BuddyPress will not add support for Elementor any time soon, if at all.
    afaik – there is an extension plugin for Elementor re BuddyPress.
    Please contact them for more info.

    shanebp
    Moderator

    LH Buddypress Export Xprofile Data should do what you want.
    Please contact the creator of that plugin with your issue.

    #320412
    shanebp
    Moderator

    If you don’t want Friends and Messaging – go to wp-admin > Settings > BuddyPress and open Components and turn off Friends and Private Messaging.

    BuddyPress does not provide Topics or Points, so you will need to figure out where they come from and contact the creators of that code.

    vitoanthony80
    Participant

    Good morning.
    For several days I have a problem that consists in the possibility of extracting from the site I am creating the data entered by users in the registration / registration form, in which I have added several fields with the BuddyPress Xprofile Custom Field Types plugin.
    I have tried several plugins and all of them only allow you to extract the base fields. I am wondering if the add fields plugin allows you to add other fields as base fields why do the plugins I have tried do not recognize these fields as base fields?
    The creator of one of the plugins used told me that the additional fields do not end up in the database or are not considered as metadata because buddypress uses its own tables.
    So how can I do to extract user data into a single csv or excel file?
    It is strange that this function does not happen as a basic function of buddypress …

    The extraction plugins used are:

    LH Buddypress Export Xprofile Data
    LH Export Users to CSV
    Import users and customers from CSV
    WordPress Users & WooCommerce Customers Import Export (BASIC)

    I hope there will be some users who can help me.
    Thank you

    #320390

    In reply to: Woocommerce Wishlist?

    Naresh Kumar
    Participant

    to use wishlist feature on wordpress/buddypress you have to install other additional plugin name “woocommerce wishlist” and just install it.

Viewing 25 results - 2,201 through 2,225 (of 69,061 total)
Skip to toolbar