Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,276 through 4,300 (of 73,985 total)
  • Author
    Search Results
  • #311873
    Varun Dubey
    Participant
    #311872
    fr3dricks0n
    Participant

    Will there be any updates to this? did you guys make this plugin

    BuddyPress Follow

    pizzapoet
    Participant

    I built a website for a client where we needed to collect some additional information on registration from users that would ultimately be used in their profiles (it’s pretty much a social media platform for local artists).

    I have it so that when someone sign ups a notification email goes to my client so he can make sure they are a legit artist to keep them on the site. The notification email just has the default info in it.

    Is there any way to include the additional extended profile data in the notification email?

    Wordpress 5.4.1
    Buddypress 6.0

    #311865
    toomanygraphs
    Participant

    Hello,

    Having some issues with activation emails and wondered if anyone could assist. While activation emails are being sent from my site, they are always the default WordPress ones and not the Buddypress ones.

    If this is relevant, I’ve noticed any attempt to create new email templates gives me a ‘Sorry, you are not allowed to edit this post’ message even though I’m the site administrator. Editing existing ones seems to work though.

    Thanks in advance.

    #311863
    clickallco
    Participant

    It would be a massive security breach if Facebook decided to transfer their users passwords over to a regular wordpress site.

    This isn’t really a Buddypress issue, but more of how Nextgen Social Login isn’t integrating your users properly.

    Until you resolve the matter with them or get a new social network plugin properly integrated with buddypress, your users need to continue logging in through facebook or they’ll have to make a new password for the account they’ve made on your site.

    #311861
    clickallco
    Participant

    Buddypress works with a templating hierarchy, just like wordpress and thousands of other plugins. This means you can override the current Buddypress templates with your own by uploading them to your own theme.

    You can find a bit more details on it here https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy

    Otherwise there should be plenty of tutorials online on how to do this.

    #311858
    iamthewebb
    Participant

    Buddypress overrides the main wordpress account creation page and the user that is created is also a wordpress user.
    Do you have a link to your site?

    #311857
    nicourense98
    Participant

    I think the answer to my question is yes, you do need a WordPress account to log in to your BuddyPress account. However, creating the account using the “Register” button coming from the BuddyPress plugin seems to not actually be creating an account, since right after clicking on the confirmation email it redirects you the WordPress login and then when you type in the information you just used to create your account, it says that the user does not exist. Any ideas on how to fix this?

    honoluluman
    Participant

    I would like to create a simple email send to admin when a user updated a specific Profile Field.
    The field is a checkbox so it should be an array because a have multiple values.

    The code that i alreade try to use is

    function buddypress_profile_update( $user_id ) { 
     
         $admin_email = "YOUR-EMAIL@DOMAIN.COM";
         $message = sprintf( __( 'Member: %1$s', 'buddypress' ), bp_core_get_user_displayname( $user_id ) ) . "\r\n\r\n"; 
         $message .= sprintf( __( 'Color: %s' ), bp_get_profile_field_data('field=Color') ). "\r\n\r\n";
         wp_mail( $admin_email, sprintf( __( '[YOUR SITE] Member Profile Update' ), get_option('blogname') ), $message );
     }
     
     add_action( 'xprofile_updated_profile', 'buddypress_profile_update', 10, 5 );

    1st Problem. In the email i get just “Color: Array” , i have tried to use vsprintf instead but it gives me back only one value.

    2d Problem. I get an email whenever there is an update in general, and not only when there is an update from the specific field with ID 7.

    Any help would be appreciated.

    #311853
    kjcarleo
    Participant

    Does anyone know how we can adjust the front end of the BuddyPress profiles for our profile pages? Right now the profile info is listed in one column and we are wasting a lot of white space.

    I am willing to pay for help.

    KJ

    nicourense98
    Participant

    When a user logs in to my BuddyPress site, it redirects them to the WordPress login. Does this mean that you need to create a WordPress account to login to your BuddyPress account? If so, is there a way around this since I would like my users to just login through the BuddyPress portal and have that get them straight to the BuddyPress site.

    #311848
    danthesignman
    Participant

    I found this video very helpful

    How to set up an email account

    #311847
    Soufiane Bahjaoui
    Participant

    Hi,
    I’m using last version of buddypress with profile fields, I have two issues :
    1) i get in profil page phone as html not text like that :
    Phone <a href="tel://06666666669&quot; rel="nofollow">0666666666</a>
    2) how can i validate phone number in registration page? i used jQuery to do that but does not work, this is my code jQuery:

    jQuery(document).ready(function(){
    
    //Code Starts
    function validatePhone(field_49) {
        var a = document.getElementById(field_49).value;
        var filter = /^[0-9-+]+$/;
    
        if (filter.test(a)) {
            return true;
        }
        else {
            return false;
        }
    }​
    //Code Ends
    
    //Code Starts
    jQuery('#field_49').blur(function(e) {
       if (validatePhone('field_49')) {
           $('#field_132').html('Valid');
           $('#field_132').css('color', 'green');
       }
       else {
          $('#field_132').html('Invalid');
          $('#field_132').css('color', 'red');
       }
    });
    //Code Ends
    
    });

    Thnak you

    enriquemorhaim
    Participant

    Hi.
    I have successfully registered new users which are active.
    However, none of them get redirected to a profile page after login and none of them have a profile page for all i know. Its like Buddypress doesn’t consider them active because it does not show them on the Members Area even though I have tried multiple logins with their account and WordPress confirms they are active.

    #311842
    IslamAboAsd
    Participant

    Hello
    I have issue when I try to add BuddyPress pages to WordPress menu it gets this issue

    Fatal error: Uncaught Error: Call to a member function get_primary() on null in /wp-content/plugins/buddypress/bp-core/bp-core-functions.php:2555 Stack trace:
     #0 /wp-content/plugins/buddypress/bp-core/bp-core-functions.php(2689): bp_nav_menu_get_loggedin_pages() 
     #1 /wp-content/plugins/buddypress/bp-core/bp-core-filters.php(744): 
        bp_nav_menu_get_item_url('activity')
     #2/wp-includes/class-wp-hook.php(287): bp_setup_nav_menu_item(Object(WP_Post))
     #3 /wp-includes/plugin.php(206): WP_Hook->apply_filters(Object(WP_Post), Array)
     #4 /wp-includes/nav-menu.php(984): apply_filters('wp_setup_nav_me...', Object(WP_Post)) 
     #5 [internal function]: wp_setup_nav_menu_item(Object(WP_Post)) 
     #6 /wp-includes/nav-menu.php(749): array_map('wp_setup_nav_me...', Array)
     #7 /wp-content/themes/ekommart/inc/megamenu/megamenu.php(34): wp_get_nav_menu_items in /wp-content/plugins/buddypress/bp-core/bp-core-functions.php on line 2555
    #311841
    Varun Dubey
    Participant

    @benoitos you can use it as ref to activate all users at once. It’s one-time code, remove it after use. https://buddypress.org/support/topic/subscribers-not-showing-in-the-list/#post-311376

    #311840
    @mercime
    Participant

    @hairbeautytraining Check if you can create the pages and associate those pages in Settings > BuddyPress.

    If that doesn’t work, I recommend that you go to the premium theme’s page in themeforest. On the page’s sidebar, click on the Comments link and search for BuddyPress in that new page for answers or ask your question. I guess that’s where they provide support for their theme.

    benoitos
    Participant

    Hello,
    I installed buddypress for a few months and it is he who manages the registrations to my site. When a person registers, he does not appear systematically in the members page. Did I forget a setting? However in the profiles the members who do not appear are well: Role on the site = Subscriber and Roles on this forum = Participant
    My version is WordPress 5.4.1 with the Divi theme, the Learndash plugin and the version 6.0.0 of BuddyPress.
    I had installed the BuddyPress for LearnDash plugin which I uninstalled because it caused bugs. Here is my site https://terresdesavoirs.fr/members/

    Do you have any idea where this display concern can come from?

    jksastrology
    Participant

    Hello,

    Can anyone please tell me how to change the Avator cropping image size?

    It works OK on larger devices. However, on mobile devices the uploaded image that you want to crop is way too big for the screen. CSS modifications do not seem effective at resizing the image during the cropping stage.

    Any help is much appreciated.

    Jay

    #311834
    a3132
    Participant

    Okay, I rolled back the BuddyPress version and then updated it again. Now everything works on Twenty-Twenty. I guess my first update got corrupted somehow. It’s still not showing on BuddyX but I guess that’s a theme issue.

    #311831

    In reply to: Backup Solution

    rashidkalwar
    Participant

    BuddyPress Backup Plugin

    BuddyPress Backup Plugin

    #311830
    rashidkalwar
    Participant

    BuddyPress Usernames Only

    This plugin overrides display names across your BuddyPress site with usernames. The plugin will make your BP install more intuitive and user-friendly when using the @mentions feature

    kitakitune
    Participant

    Hello! Thanks for the great plugins.
    I’m writing this question using a translation software because I’m Japanese and I don’t speak English.
    I’m sorry if it’s hard to read.

    What I want you to help me with is exactly what the title says.
    The private messaging feature, which works in legacy, doesn’t work in Nouveau.

    I first tried the contents of the two URLs below.
    It was 19 months ago, but only because it was so similar to the current situation.
    I’ve removed “https://&#8221; from the URL.

    buddypress.org/support/topic/private-message-button-not-working-right/

    buddypress.trac.wordpress.org/ticket/7908

    But since it didn’t improve, the

    I installed the version of “6.0.0-RC2” on this site to make sure that it was fixed.
    However, the situation did not change.

    I was wondering if it was something I was going through.
    I tried everything I could to stop all other plugins, verify with various themes, change the PHP version, clear the cache, reinstall, etc., but it didn’t improve.

    The Nouveau feature is great, and I’d like to be able to use it somehow.

    Please help me.

    Below.
    buddypress.org/support/topic/when-asking-for-support-2/
    I also wrote a response to the list I found in
    I’m sorry if I’m wrong in my perception.

    1. which version of WordPress are you running?

    Answer: “Version 5.4.1-en.

    2. did you install WordPress as a directory or subdomain installation?
    I did a quick install against the domain on the server.
    If the directory is installed, is it in the root or subdirectory?

    4. Have you upgraded from a previous version of WordPress? If so, from which version?
    One front.

    5. was WordPress working properly before installing/upgrading BuddyPress (BP)? Examples: permalinks, creating a new post, comments.
    It was functioning properly.

    6. What version of BP are you running?
    6.0.0-RC2.

    7.Have you upgraded from a previous version of BP? If so, from which version?
    5.2.

    Are there any plugins other than BuddyPress installed and activated? If so, which one is it?
    BuddyPress is not surprising.

    9.Are you using a standard WordPress theme or a customized theme?
    It’s standard stuff.

    10.Which theme do you use?
    TWENTY SEVENTEEN.

    11. Have you changed the core file in any way?
    No.

    Is there a custom function in bp-custom.php?
    No.

    13. if you’re running bbPress, which version is it? Or do you have bbPress built into your BuddyPress installation?
    No, I’m not using it.
    14.Please provide a list of errors in the server log file: codex.wordpress.org/Debugging_in_WordPress
    Is this it?
    Notice: Trying to access array offset on value of type int in /home/xx/tarianpapa.com/public_html/wp-includes/formatting.php on line 904

    15. Which company offers your hosting?
    //www.xserver.ne.jp/でしょうか
    16.Is the server running Windows, or if it’s Linux…Apache, nginx or something else?
    It’s a server called the X server, I think it’s Windows.
    17. Which BP theme do you use?
    If you mean NOUVEAU or Legacy, then NOUVEAU.
    18. did you overload the BuddyPress template file?
    I don’t think they did.
    19. Are there any other site customizations that you think are relevant to the problem?
    No, sir.

    Basic troubleshooting.

    BP Themes: Is this issue specific to the theme set in Dashboard->Settings->BuddyPRess->Options?
    It only happens in NOUVEAU.
    You can use the private message feature normally in Legacy.

    #311825
    behaugabook
    Participant

    How to show members who have photos only? I do not want profiles without photos to show on my BuddyPress members widget.

    #311819
    shanebp
    Moderator

    Please read the documentation:

    Configure BuddyPress

Viewing 25 results - 4,276 through 4,300 (of 73,985 total)
Skip to toolbar