Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,226 through 4,250 (of 68,986 total)
  • Author
    Search Results
  • calisun
    Participant

    I have an existing page at which I used another social plugin and I am not happy with it, so I will be switching to BuddyPress.
    When looking at users in WordPress Admin Dashboard, I see that all users are there, but their profile pictures are not save in there (looks like that plugin saves it someplace else).
    I would like to grab their profile pictures before switch and upload their pictures for them, so it will be very little disruption for users. But when I go to User Profiles, I am not given an option to upload Profile Pictures.
    Is there way I con do it?

    #308595
    Jpl75
    Participant

    HI,
    Members of my community must be connected to my site to see the members list.
    When I am connected, if I see someone connected (widget in sidebar), I click on his photo, I see his profile and “Private message” near the round photo.
    I click on “Private message” and arrive on my profile.
    I suppose that I only have to write the message. NO ! I must click on “Write a message”, search the name of the person (I was on his profile just before !) and then write the subject, and so on.
    Is it the normal way or is there something wrong in my settings ?
    Thanks in advance.
    WP 5.2.4 with Twenty sixteen, Buddypress 5.0.0, https://www.alpes-spirit-chapter.com/
    Regards.

    Kir 2012
    Participant

    Hi how would I change the name of the buddypress activity tab to include the name of the displayed user? Just the activity tab, I have this code below:

    ////////////////////////////////////CHANGE MENU NAMES / POSITIONS //////////////////////////////
    function mb_profile_menu_tabs(){
    global $bp;
    //$bp->bp_nav['activity']['position'] = 14;
    $bp->bp_nav['activity']['name'] = 'Feed';
    }
    add_action('bp_setup_nav', 'mb_profile_menu_tabs', 201);
    //////////////////////////////////// CODE END ///////////////////////////////////////////////////
    

    The above code in functions changes the tab name to Feed but I’m trying to work out how to make the tab name: ‘displayed username’s Feed’

    Has anyone had to do this before / got any pointers? I’d be so grateful, I’ve researched and tried various things but can’t seem to get it working

    Thank you 🙂

    #308591
    mmeadpond
    Participant

    Hi, I reached out to Divi and they responded that the article one of their support people gave me was a 2015 document. Since then, Divi is compatible with BuddyPress.

    ~M MeadPond

    #308582
    pixieblitz
    Participant

    Hi @imath! Thank you for your response. Wouldn’t moving them all to the default profile tab make them show up on the registration form? I’m trying to keep the registration process as clean as possible.

    Also while I’m aware of the use of templates, and I’m pretty sure members->single->profile->edit.php (or profile-loop.php?) is probably the buddypress template I’d need to modify in this case, I don’t actually have any idea how to do it. It seems like the separate groups are controlled by separate forms displayed on separate tabs, so I’m assuming that at the very least user profile changes would still have to be saved via separate “Save Changes” buttons for each form, even if they were displayed on the same tab?

    nicolang
    Participant

    Hi,

    I installed BuddyPress Group Email Subscription. It works when there is a new activity but it doesn’t work when a new forum post is done. However, all the posts appear in the activity feed.

    For information, I use Youzer.

    Anyone would tell me is there is a parameter to change or if the feature doesn’t work with forum component.

    Thanks in advance for you help, Nicolas.

    #308576
    nathan913
    Participant

    One of the heavily requested features by BuddyPress users was the ability to add Repeater Fields or Repeater groups of fields dynamically to BuddyPress Profile, without having a predefined number
    Official Site

    #308568
    metalhead505
    Participant

    I’ve optimized my public pages for speed, and I’ve had great success with all the pages on my site (all at or close to 100 in Page Speed Insights.) The exception is my registration page.

    I was using a plugin called “Bp xProfile Location” which was hurting the page speed significantly. After removing that plugin, I’m still only able to achieve 85 on the registration page.

    I have a few JS snippets taking action on the page also, but removing them caused no change in the speed score.

    Out of curiosity, I inspected https://login.wordpress.org/register with Page Speed Insights, and even that page is quite slow with an 88 score. (Their TTI is 3.6 seconds.)

    So, knowing that even the official WordPress site has a slow registration page, I feel that Buddypress is probably not the problem, but I’m not sure.

    Does anyone have a high speed score (higher than 88) on their registration page? Alternatively, is there a specific, uncontrollable reason that our reg pages are so slow, and should we not worry about it?

    #308565
    geryeo
    Participant

    Hello,

    I am trying to translate the website using Loco plug-in. Everything goes smooth except the user tab within BuddyPress. The text for Notifications and Messages are still appearing in English, even when I check the language pack for BuddyPress – the language pack (Vietnamese) is fully translated.
    Image, so you can get idea: https://ibb.co/DQdkcJt

    Do you know how to fix this?

    Thank you

    #308563
    yaesew
    Participant

    To make it more clear, what my problem is.
    The standard registration process in buddypress requires only 3 fields: Accountname, email address and password. Additionally I defined some fields in Users –> Fields. Is it possible to make those fields part of the registration process?

    Thanks alot and sorry for my misleading description of my problem beforehand.
    With kind regards,
    yaesew

    grounddomainbjj
    Participant

    I’m getting the “You must call’the_content’ function in the current template, in order for Elementor to work on this page.” error. I tried working through the problem, but I’m still having issues.

    WP Version: 5.2.4
    BuddyPress Version: 5.0.0

    Please help.

    #308555
    Anonymous User
    Inactive

    Hi @pixieblitz The most simple way is too put all your fields into the default profile tab from the fields WP Admin.

    You can probably list all fields on the edit screen on the front-end overriding the template from your child theme. You should have a look at https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

    #308547
    jcfromkc
    Participant

    Thanks for commenting. I’m using the correct field_id. I just created a new field, it was given the id of 54. When I try the following code it doesn’t work.

    function swiss_target_blank( $field_value, $field_type, $field_id ){
    	
    	if( $field_id == 54 ) { // get the field_id from edit field url in wp-admin
    
    		$field_value = str_replace('" rel="nofollow">', 'rel="nofollow" target="_blank"', $field_value);
    	}
    
    	return $field_value;
    }
    add_filter('bp_get_the_profile_field_value', 'swiss_target_blank', 11, 3);

    I tried this code in my functions.php and bp-custom.php, neither work.

    Line 176 – /plugins/buddypress/bp-xprofile/classes/class-bp-xprofile-field-type-url.php

    It seems like the way you’re suppose to target rel=”nofollow” has changed or something.

    I’m still working on this.

    #308540
    mitsoulas
    Participant

    Hi
    wp version 5.2.3 buddypress version 5.0.0
    site address syrizanet.gr
    problem with editor in all components of buddypress
    Please help if you can
    Thank you

    #308536
    David Cavins
    Keymaster

    Hi, feel free to look at the source code where BP calls PHPMailer:
    https://github.com/buddypress/BuddyPress/blob/5.0.0/src/bp-core/classes/class-bp-phpmailer.php#L19

    As you can see, unless you are using a plugin that is injecting an older version of PHPMailer on the bp_phpmailer_object filter, BP is using the PHPMailer class included in the WP includes folder. BP isn’t including a copy of the PHPMailer class at all.

    noralyvdh
    Participant

    Hello there,

    I hope someone can help me with the following. The user profile photo (normally Gravatar) is filled with a different photo then there maybe at gravatar. WordPress is using that photo correctly in the admin bar and in the user overview. But the image is not used in BuddyPress, which seems weird to me, because it uses the image in that field normally.

    How can I fix this?

    Thanks,
    Noraly

    #308523
    adrian122
    Participant

    Thanks, i did what you say and in debug log appears:

    “[16-Oct-2019 20:51:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function bp_xprofile_fullname_field_id() in /var/www/vhosts/27/196882/webspace/siteapps/WordPress-259852/htdocs/wp-content/plugins/buddypress/bp-members/bp-members-functions.php:1779
    Stack trace:
    #0 /var/www/vhosts/27/196882/webspace/siteapps/WordPress-259852/htdocs/wp-content/plugins/buddypress/bp-members/screens/register.php(204): bp_core_signup_user(‘rfds’, ‘pepe’, ‘rafa1@gmail.com’, Array)
    #1 /var/www/vhosts/27/196882/webspace/siteapps/WordPress-259852/htdocs/wp-includes/class-wp-hook.php(286): bp_core_screen_signup(”)
    #2 /var/www/vhosts/27/196882/webspace/siteapps/WordPress-259852/htdocs/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array)
    #3 /var/www/vhosts/27/196882/webspace/siteapps/WordPress-259852/htdocs/wp-includes/plugin.php(465): WP_Hook->do_action(Array)
    #4 /var/www/vhosts/27/196882/webspace/siteapps/WordPress-259852/htdocs/wp-content/plugins/buddypress/bp-core/bp-core-dependency.php(359): do_action(‘bp_screens’)
    #5 /var/www/vhosts/27/196882/ in /var/www/vhosts/27/196882/webspace/siteapps/WordPress-259852/htdocs/wp-content/plugins/buddypress/bp-members/bp-members-functions.php on line 1779″

    David Cavins
    Keymaster

    Hi @mon2-

    You’d have to write some custom code to add that functionality. (That’s beyond the scope of the support forum.) I’m guessing that you could add a WP Cron job that fetches old friendship requests and send the notifications again, but it would take some work on your part. You can see how the initial request email is sent here:
    https://github.com/buddypress/BuddyPress/blob/master/src/bp-friends/bp-friends-functions.php#L825

    #308516
    David Cavins
    Keymaster

    Have you already tried the BuddyPress repair tools? They’re in your WP-admin dashboard > Tools > BuddyPress (at /wp-admin/tools.php?page=bp-tools).

    #308515

    In reply to: not able to list posts

    David Cavins
    Keymaster

    Hi @chrix22-

    I don’t think that that is a core BuddyPress screen. Are you adding it via a plugin or the theme you’ve chosen? If so, you’ll need to seek support there.

    #308490
    alysonmac
    Participant

    @patriot06 = i was using nouveau but changed it to legacy and layout changed of course, but posting is now available…looking at peepso – their response to support questions is awesome…they are really involved and even have a plugin for migration from buddypress to peepso. Challenge is there is a cost involved but i think it might be worth it

    cviniciusj
    Participant

    Hi there!
    I’m going to make both of things.

    I know the base of users is the same of WordPress. So some users will be just regular costumers of WooCommerce store and others will be Members of a Community. How do I make it?

    There is no problem if I’ll have to make the register of BuddyPress members manually, because the costumers have to register them direct from forms to allow buying the stuff.

    In resume: A community member can also be a constumer, but a costumer can’t be a listed member on BuddyPress Community.

    TSurF
    Participant

    Hi BuddyPress support community,

    I am currently in the middle of a project for a client, I’ve never used BuddyPress before but heard many good things about it.

    Here is what I’m trying to achieve:

    2 types of users: 1. standard user (to browse user accounts), 2. paid user (to create paid to view galleries for standard users to view).

    Each paid user will have a private pay-to-view gallery page. The paid user will determin the price to view the gallery. When a standard user wants to see the gallery, they pay the amount specified by the paid user and its split between the website owner and the paid user.

    Can anyone suggest a method to achieve this?

    #308463
    MissMad
    Participant

    Hi!

    I’ve been experiencing quite a problem since a few days: I’m using Mailjet but all the activation emails from BuddyPress are blocked (hence blocking all emails from my website). It seems like the “From” field is responsible for this.
    How can I modifiy it to get my emails send again?

    Thanks for any clue.

    demonboy
    Participant

    Hi,

    Is there a way of adding already existing fields to the BuddyPress profile page? My membership is controlled by MemberPress and there are a load of fields relating to that that I would like to include on the BuddyPress profile page. Rather than sending the user to a different account page, it would be nice to include them here so that they are editable by the user. So far all that is displayed on the profile page is Base:Name.

    I know there is a section that allows the creation of new fields, but what about already existing fields?

    I’m quite new to BuddyPress and I can just about muddle my through php but I wondered if there’s a plugin that allows this, or perhaps someone knows of a simple guide to doing this?

    Thanks in advance.

    WP 5.2.3
    BP 5.0.0

Viewing 25 results - 4,226 through 4,250 (of 68,986 total)
Skip to toolbar