Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,426 through 5,450 (of 94,540 total)
  • Author
    Search Results
  • #308396
    David Cavins
    Keymaster

    Hi Tom-

    It sounds like you have a lot of balls in the air. For instance:

    Remember, I have removed the original xprofile_sync function.

    Honestly, I can’t know enough about your setup to tell you anything for sure. What I can tell you is this:

    • bbPress uses WordPress’s “Display Name” field, not a BuddyPress field.
    • BuddyPress only updates the WP “Display Name” field when profile syncing is enabled.
    • BP’s default sync function also updates WP’s “First Name” and “Last Name”
    • The replacement function I provided updates WP’s “Display Name” but _not_ the “First Name” and “Last Name” fields.

    Feel free to comment out the “nickname” update line. You won’t hurt anything. You’ll just not update the BP “nickname” field. Which won’t affect the name bbPress displays.

    #308392
    Jan
    Participant

    Hello. I’ve updated buddypress to 5 version. Is it normal that when i access my site and i go to my profile nothing appears? please help me. Is very important.

    http://www.dovadoapp.com is my website

    #308390
    Anonymous User
    Inactive

    Hi @alysonmac

    The first thing you need to do is to read this topic, to understand the informations we need to help you solve your issue.
    https://buddypress.org/support/topic/when-asking-for-support-2/

    Then post a new topic and we’ll try to help you.

    #308388
    selym
    Participant

    Turns out if you send your blog posts to Twitter with Buddypress @usernames in it, Twitter will (naturally) think it’s a Twitter username and link to their profiles instead. I don’t anticipate there being an easy way to fix besides removing the names, but just happened to notice this and figured I’d throw it out there.

    #308381
    Raval
    Participant

    Hi BuddyPress,
    I am asking you for help.
    I use the BP Activity Plus plugin. Unfortunately, the plug-in has been closed and I have not found an alternative for it, and support no longer responds. How can I add the option of including a URL to the image loaded in the activity stream in Activity Plus?
    Just like on Facebook. Does anyone know the solution

    #308377
    nachodila
    Participant

    Hello, I am reading everything related to this topic and I see that it is a general problem that has not been solved correctly.
    In my case, activation emails are not received after registration.
    In support of WPLMS they have sent me to Buddypress saying that it is not their business.
    I have checked with my hosting and the emails do not come out, they are not generated.
    I have verified the sending via WP MAIL SMTP with server, port and specific user, but still not received.
    Isn’t there a concrete solution? What can be done?
    Thank you.

    jcfromkc
    Participant

    On the BuddyPress Activity Stream, new blog posts show up with a post thumbnail and an excerpt of the content. How do I make the post thumbnail clickable so that it takes the visitor directly to the post?

    I’ve tried Automatic Featured Image functions like the one below but they aren’t targeting the featured images on the Activity Stream.

    function wpb_autolink_featured_images( $html, $post_id, $post_image_id ) {
    $html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_the_title( $post_id ) ) . '">' . $html . '</a>';
    return $html;
    }
    add_filter( 'post_thumbnail_html', 'wpb_autolink_featured_images', 10, 3 );

    All of the WordPress solutions I’ve tried have come up short. This seems like a BuddyPress thing.

    Does anyone know how to target the featured image and excerpt for a blog post that appears in the Activity Stream?

    Thx, JC>

    #308371
    jcfromkc
    Participant

    There’s an article about this topic that was marked Resolved, but the author did not reveal the actual solution.

    Only Display Custom Field if not empty

    I’m using the front.php template to customize the members profile page. On the members profile page, I’m trying to hide all Profile Fields that are empty.

    I’ve tried the code outlined in the referenced link with no luck. That post is about 4 years old so I don’t know if the information is the most up to date. When using the referenced code, I can’t get anything to show up on the page.

    Can someone please point me in the right direction?

    Thx, JC>

    #308358

    In reply to: Expand Activity Stream

    Georgio
    Participant

    Hi @ravals
    Same problem here.
    I found two workarounds so far.
    1. if you use mediapress or rtmedia as media component, they have a feature for uploading from activity stream.
    2. replace “what’s new” by tinymce. I have chosen the second option but I am struggling with the editor resizing. See the thread

    #308356
    Raval
    Participant

    Hello BuddyPress
    Is there an alternative to BP Activity Plus?
    this plug-in has been closed and is no longer available for download. Is there any free or paid plug-in that develops the Activity Stream?

    #308355
    Anonymous User
    Inactive

    Hi @georgio-1

    Thanks for your opinion and inputs.

    1. There will be a media component in 6.0.0 🙂
    2. We will ask for users input soon about their ideas of BuddyPress blocks (that’s a first step)
    3. We will think about how to satisfy developers building on top of BuddyPress as well as end users.

    #308354
    Anonymous User
    Inactive

    Hi I just sent you an email to the address you’re using with your BuddyPress account. I have detailled another approach in this email, because I think we should not work on production site.

    #308346
    Anonymous User
    Inactive

    Thanks, that’s exactly what I’m doing with a fresh install of WordPress, BuddyPress and having the Twenty Twenty theme active and I can’t reproduce.

    The only explaination I see is there’s some custom code editing the query. Custom code can be:
    1- into the functions.php of the active theme or active child theme,
    2- into a /wp-content/plugins/bp-custom.php file,
    3- into any file located in the folder /wp-content/mu-plugins,
    4- into a plugin.

    That’s why we generally ask to deactivate all plugins except BuddyPress, switch the active theme to a Twenty “Something theme” and remove files of point 2 and 3.

    Reading our thread so far, you already did that testing right?

    #308336
    Georgio
    Participant

    Hi,
    I recently replaced whats-new by tinymce. After some customizations, that’s what it looks like (groups): Screenshot

    To do that, I took a copy of post-form.php from the legacy theme (/buddypress/bp-templates/bp-legacy/buddypress/activity/post-form.php) and replaced the file of the nouveau theme (/buddypress/bp-templates/bp-nouveau/buddypress/activity/post.form)

    Then I changed the code and now it is:

    	do_action( 'bp_before_activity_post_form' ); ?>
    
    	<div id="whats-new-content" >
    		<div id="whats-new-textarea">
    			<label for="whats-new" class="bp-screen-reader-text"><?php
    				/* translators: accessibility text */
    				_e( 'Post what\'s new', 'buddypress' );
    			?></label>
    			
    <?php
    $content = '';
    $editor_id = 'whats-new';
    $settings = array( 
    		'teeny' => false, 
    		'media_buttons' => false, 
     //    'textarea_rows' => 5,
            'editor_height' => 100,
    		'drag_drop_upload' => false, 
            'quicktags' => false );
    
    wp_editor( $content, $editor_id, $settings );
    ?>
    </div>
    
    		<div id="whats-new-options">
    			<div id="whats-new-submit">
    				<input type="submit" name="aw-whats-new-submit" id="aw-whats-new-submit" value="<?php esc_attr_e( 'Post', 'buddypress' ); ?>" />
    			</div>
    

    In the code I added, the height of tinymce is 100px but it is always launched with 134px height.
    It works with 100px height only with the “teeny” version, but this version doesn’t show the image button I added (using a snippet) and the smiley button (from the wp-monalisa plugin).

    I tried to fix the problem with css and the only selector that seems to work is iframe#whats-new_ifr but I cannot use !important to override this, because it affects the autoresizing feature.
    I thought that I could modify it directly on its system file, but I cannot locate it using the plugin “String Locator”

    Any idea? I don’t like to leave it with this height, because it is somehow ugly.

    Thanks in advance.

    Carsten
    Participant

    Theme – Gwangi dating Version: 2.0.0, Author URL: https://www.themosaurus.com
    BuddyPress: by The BuddyPress Community – 5.0.0
    WP Version: 5.2.3, WordPress address (URL): https://filipinowomen.online

    Hi there, I have this snippert, that figures out if the logged-in user is man or woman!

    —————————————————————————-
    add_filter (‘bp_ajax_querystring’, ‘modify_members_loop’, 20, 2);
    function modify_members_loop ($qs=false, $object=false)
    {
    global $wpdb;
    if ($object != ‘members’) return $qs;

    // figure out if the logged-in user is man or woman
    $gender = xprofile_get_field_data (3, bp_loggedin_user_id ());

    if ($gender == ‘Man’)
    $query = “SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 3 AND value = ‘Woman'”;
    else
    $query = “SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 3 AND value = ‘Man'”;

    $custom_ids = $wpdb->get_col ($query);

    $args = wp_parse_args ($qs);
    $args[‘include’] = implode (‘,’, $custom_ids);
    $qs = build_query ($args);

    return $qs;
    }
    ——————————————————————————–
    The problem is, that it doesn’t work with the widgets, who’s online…etc.
    So does anyone know, how to fix that?

    Note: A loggede in man, should only be able to see women’s profiles and women should be able to see men’s, even if a woman/man, try to search for their own gender!

    Best regards

    #308333
    Georgio
    Participant

    This is a very interesting subject. I am using buddypress for different projects since 2014. I would like to express my point of view, not as a developer (my development skills are limited) but as business coach.
    If I see buddypress as a project, I think that there is a problem with the goal. Buddypress provides a networking solution and its orientation is supposed to be user experience enhancement.
    It seems that the team is oriented towards the technical side of the project. So they make technical improvements that may be important but the final user will never see and doesn’t care about. For ex. with the latest version, I saw a modification of the password verification system while at the same time members cannot block annoying users with this messaging system, they cannot upload a photo using the “whats-new” form and there is no reporting system to keep your network clean.
    There is no media component which is important for a social network. No likes, no sharing, no global searchtool etc
    You have to install a lot of plugins and frequently fight with conflicts. Plugins should exist for special features not for basic ones.

    If I had to manage buddypress as a project I would invite buddypress users on this site to give feedback on what features they consider important to be implemented. Then I would make an agenda to implement them using code from existing plugins.

    Since 2014 I saw only two things that enhance user experience: autolinks and a better theme.

    I hope that my point of view helps to define a project orientation that, in my opinion, is not very clear now.

    #308331
    Anonymous User
    Inactive

    Hi @welshlamb10

    I’m sorry I can’t replicate what I’m understanding of your issue. Let’s be sharp in explanations!

    Here’s what I did.
    1/ Added a regular user to 2 hidden groups (A, B)
    2/ loggedin as this user.
    3/ Posted an update from Group A then being an admin I’ve edited the date of this update so that she appears when clicking on load more only.
    4/ As the regular user I’m going on Group B’s activity stream, click on load more multiple times and all I can see is activities from Group B.

    Could you:
    1/ Reproduce the bug on your site,
    2/ Note in details the different steps you did to reproduce it,
    3/ Share these details like I did above ?

    Thanks in advance.

    About BuddyBoss, I was speaking of this other issue: BuddyBoss Media (upload image icon) no longer displays for certain mobile devices. I can’t imagine a scenario where BuddyPress would be involved on the “upload image icon” vanishing for a Plugin output..

    #308279
    welsh10
    Participant

    Hi @imath,

    Thank you so much for getting back to me. I’ve made contact with BuddyBoss and they have confirmed that it’s no theme issue.

    I have carried out the following:

    – Disable all plugins
    – Removed Custom functions.php on Child theme
    – Switched to Twenty Nighteen theme
    – Switched between BuddyPress Template Pack
    – Completed a BuddyPress repair

    The issue still persists.

    If I visit a hidden group then go to ‘activity’ scroll down to the bottom of the group ‘load more’. This will then load activity from other hidden groups.

    I’ve had to temporarily close the site until we have a fix.

    Appreciate your time and help.

    #308276

    Topic: Email Templates

    in group forum Installing BuddyPress
    simonradford
    Participant

    I accidently deleted the email templates thinking they must be spam postings, tried uninstall and reinstall BuddyPress but templates will not reimport, any ideas how to get the templates back?

    #308273
    404user
    Participant

    WordPress 5.2.3
    Buddypress version up to date 5.0.0.

    Hi Only the base profile is showing up on registration and being logged into account.I am trying to build a couples profile so I would have the data from both the man and the woman, how do I go about this? I want to enable extra fields and also how do i put them extra fields in a new tab? I have disabled my theme and put the twenty twelve and still the same problem, please help

    They show up in my user profile fields but nowhere else on my site, only the base is showing.

    #308271
    Anonymous User
    Inactive

    Hi,

    First I’m sorry to read about these issues. I’ve just tested the first item of your list with latest BuddyPress, WordPress and Twenty Nineteen theme.

    I confirm that when I’m on the activity page of an hidden group and after scrolling down to load more activities, only the activities of this group are displayed.

    Have you tried to deactivate all plugins except BuddyPress, remove custom code, and switch to a Twenty “Something” theme to see if you still had the issue?

    About 404 on posts page, is it when you click on a the link of an activity relative to a page (meaning you activated the Site Tracking component and added some custom code to track the page post type) ?

    About BuddyBoss Media, have you tried to reach their support team ?

    FYI, this support topic explains how you can trouble shoot in case of issues, I advise you to read it.

    #308196
    coolhunt
    Participant

    Hey All,

    Im looking for a great looking simple free theme.
    Anyone have any ideas how to find such an elusive Free Buddypress THEME?

    @imath
    @sbrajesh
    @buddyboss

    any thoughts gents?

    Georgio
    Participant

    Hi everyone,
    is it possible to disable the auto-generation of passwords on the signup form?
    This features comes with the latest version of Buddypress and gives me headaches, given the configuration of my site.

    The context:
    The home page is the signup page and there is a login form on the topbar. Both browsers, Firefox and Chrome, fill the signup form with the username of the login form. The problem is with firefox who sees my username together with the auto-generated password and thinks I want to update my credentials. So everytime I login, Firefox asks me if I want to update my password. It is very annoying and I must stop this.

    Is there any snippet to disable this feature?

    Thanks in advance

    #308160
    David Cavins
    Keymaster

    There are several ways to edit messages. Since these messages are filtered (it’s applied here: https://github.com/buddypress/BuddyPress/blob/5.0.0/src/bp-templates/bp-nouveau/includes/functions.php#L932), you could add something like this in your bp-custom.php file:

    
    add_filter( 'bp_nouveau_feedback_messages', function ( $messages ) {
    	$messages['request-details']['message'] = 'My custom message';
    	return $messages;
    } );
    

    If you find yourself changing a lot of messages, then creating a custom language file is the way to go. https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/

    #308157
    DL
    Participant

    I need this too, now that I’ve changed to 5.0 and the Nouveau themplates.

    I used to be able to over-ride the text
    “Registering for this site is easy. Just fill in the fields below, and we’ll get a new account set up for you in no time.”
    by editing a copy of register.php in the child theme.

    That doesn’t work now, the above text is found in
    /buddypress/bp-template/bp-nouveau/includes/functions.php

    Is it safe to put a copy of funtions.php in
    /child-theme/buddypress/includes/functions.php and make the edit there?

    Or is there a better way?

Viewing 25 results - 5,426 through 5,450 (of 94,540 total)
Skip to toolbar