Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,501 through 4,525 (of 73,986 total)
  • Author
    Search Results
  • #311091
    shanebp
    Moderator

    It depends on which template pack you are using.

    For Legacy, it is this template file:
    buddypress\bp-templates\bp-legacy\buddypress\members\register.php

    Overload that template by copying it to a directory that you create in your child-theme:
    buddypress\members\ and make your changes.

    If you are using Nouveau, it is more difficult. This is the file:
    buddypress\bp-templates\bp-nouveau\includes\functions.php
    It is not a template file, so your choices are:
    1. hack the file and redo the hack every time you update BP – not recommended
    2. use a language translator
    3. write a filter function

    function kimo_change_nouveau_string( $array ) {
    
    	$array['request-details']['message'] = "This is your custom message";
    
    	return $array;
    
    }
    add_filter( 'bp_nouveau_feedback_messages', 'kimo_change_nouveau_string', 20, 1 );

    Paste the function in your theme/functions.php or in bp-custom.php
    Test to make sure it is working.
    Then adjust the message to your liking.

    #311073
    welsh10
    Participant

    Hi,

    Buddypress is awesome.

    Does anyone have a plugin or method to move posts by a user from one group to another? A way of moving posts would be fantastic.

    Thanks

    #311070
    pledgerar
    Participant

    I would like any and all of my visitors to be redirected to their buddypress profile after login. However, when I try to use the https://www.mysite.com/me url (which normally redirects to the member’s profile) the user is redirected to a woocommerce my account page. How do I fix this?

    #311069
    kerchmcc
    Participant

    HERE YOU GO! I was in the boat with you all. Just sorted out today!

    I don’t ever want to sort by last active

    #311068
    fra88
    Participant

    Hi,

    How can I translate the buddypress profile fields (for a multilingual website)?
    Is there a free option? Or is it only possible with WPML?

    Thanks!

    #311067
    kerchmcc
    Participant

    FINALLY.. got this sorted out.
    Check the gist here: https://gist.github.com/kimwhite/1c38fab78081c27491651e6cbb86c58d
    When installed it shows ALL members whether they have ever been active.

    put the file in /yourCHILDtheme/buddypress/members/members-loop.php
    and then in .css hide filter: #dir-filters {display: none;}

    THANK YOU @kimwhite

    #311061
    pixburgh
    Participant

    So I have been searching for a solution to this problem for some time now, all the posts I seem to find are many years old and every other post seems to say that Divi and BP are compatible.

    I have tried all the basic troubleshooting steps I have seen online to no avail.

    When i installed BP. i had to create the pages and link them and they worked, yet all the child pages faild to load.

    My debug log is long, ill post a snipplet so maybe someone can maybe check it out. My developer friend seems to think divi needs some type of module to work in divi.

    [19-Apr-2020 09:26:08 UTC]  .../builder/class-et-builder-element.php:388  ET_Builder_Element::__construct():
    You're Doing It Wrong! Module setting definition for f_icon has a deprecated value: 'et_pb_get_font_icon_list' for parameter 'renderer'. Use 'select_icon' instead.
    
    [19-Apr-2020 09:26:08 UTC]  .../builder/class-et-builder-element.php:388  ET_Builder_Element::__construct():
    You're Doing It Wrong! Module setting definition for b_icon has a deprecated value: 'et_pb_get_font_icon_list' for parameter 'renderer'. Use 'select_icon' instead.
    
    [19-Apr-2020 09:26:08 UTC]  .../builder/class-et-builder-element.php:388  ET_Builder_Element::__construct():
    You're Doing It Wrong! Module setting definition for l_icon has a deprecated value: 'et_pb_get_font_icon_list' for parameter 'renderer'. Use 'select_icon' instead.
    
    [19-Apr-2020 09:26:08 UTC]  .../builder/class-et-builder-element.php:388  ET_Builder_Element::__construct():
    You're Doing It Wrong! Module setting definition for sep_icon has a deprecated value: 'et_pb_get_font_icon_list' for parameter 'renderer'. Use 'select_icon' instead.
    

    looks like Chinese to me. Any help highly appreciated.

    #311057
    Eric
    Participant

    Are there any Templates that work great with BuddyPress? I am using 2020 on my blog twittier.me that I just launched.
    Thanks.

    #311056
    Eric
    Participant

    In BuddyPress can users create their own posts/threads? Similar to a Tweet in Twitter.
    Thank you.

    #311051
    geneliamathew
    Participant

    Hi All,

    I am new here. I need a help, when somebody with a particular role send friendship request to a person, system should automatically accept the request without manual intervention. Please guide me on this.

    Thank you

    ghadirassadi
    Participant

    Hi, I’m using WCFM MarketPlace and BuddyPress.
    So far I managed to redirect all users profile to their sociale profile provided by Buddypress.

    What I want is to be able to show vendor’s product on their social profile and add another custom field for reviewing the vendor on its own social profile.

    <https://homymade.ch/members/davud-assadi/&gt;

    I managed to add products but by using the following shortcode [products store=””] but it shows all products.

    #311048
    Varun Dubey
    Participant

    @chris98 At CodeCanyon, plugins like LetsPush and Smart Notification WordPress Plugin offers web push notification support for BuddyPress

    #311047
    @mercime
    Participant

    @mbigler
    – What have you done so far to resolve the issue? What theme are you using? Have you changed to a default theme to see if that resolves the issue? Have tried deactivating other plugins to see if there are conflicts preventing account deletion?
    – Where is BuddyPress activated in your multisite, in the main site or in subsite/subdomain? Have you enabled MULTIBLOG or is it basic BP in multisite?

    Help us help you by providing more info about your setup. https://buddypress.org/support/topic/when-asking-for-support-2/

    simmidhaliwal
    Participant

    I created an action that uses the messages_new_message function (any time a user gets a tag, they automatically receive a private message.)

    Would it be possible to put a border around the message or make the font different? I would like to make these messages stand out a little from the other messages in a users inbox/thread by adding some styling. Below is the code I am using:

    function send_message_to_student_113( $user_id, $tags_applied ) {
    
    $tag_id = wp_fusion()->user->get_tag_id( ‘course tag 1.1.1’ );
    
    if ( in_array( $tag_id, $tags_applied ) ) {
    
    $args = array(
    ‘sender_id’ => 1,
    ‘thread_id’ => false,
    ‘recipients’ => $user_id,
    ‘subject’ => ‘Hello there’,
    ‘content’ => ‘You got a new tag! Congratulations. Please let me know if you need any help!’,
    ‘date_sent’ => bp_core_current_time()
    );
    
    $result = messages_new_message( $args );
    
    }
    }
    add_action( ‘wpf_tags_applied’, ‘send_message_to_student_113’, 10, 2 );

    I am using WordPress 5.3 and I am actually using BuddyBoss which is a fork of Buddypress.

    Thank you! Simmi

    #311039
    Varun Dubey
    Participant

    @easytomake You can try to disable BuddyPress registration
    https://gist.github.com/r-a-y/5578432

    #311038
    Varun Dubey
    Participant

    @cmsplay there are a couple of plugins in WordPress repo to import the user from CSV and few of them have support for BuddyPress.
    You can try https://wordpress.org/plugins/import-users-from-csv-with-meta/

    #311036
    Varun Dubey
    Participant

    @sanra84 you can check following

    BuddyPress Links in WordPress Menus


    You can add them as a dropdown menu which will display for logged-in users.

    #311035
    Varun Dubey
    Participant

    @mbigler
    Inside Network admin
    Settings > BuddyPress >> options
    Account Deletion enable that option.
    https://prnt.sc/s19zi5

    #311034

    In reply to: in buddypress

    Varun Dubey
    Participant

    @armandoello create those pages manually and set them in Setting >> BuddyPress >> Pages
    You will find options to select your newly created pages for Groups.
    https://prnt.sc/s19noq

    #311033
    armandoello
    Participant

    The following active BuddyPress Components do not have associated WordPress Pages: User Groups. Repair

    I can not repair it.
    When I want to create a group I klik add new group.. then I get to the sample page which is nothing.. so the component is missing.

    how to solve this?

    #311032
    mbigler
    Participant

    I have buddypress network activated in a multi-site setup and none of the users can delete their account through their buddypress profile. When attempting to delete their account, the user is presented a message that says “You do not have permission to edit this user”. This is true for all users, even those with admin privileges. How can I make it possible for users to delete their own accounts?

    tonythomas87
    Participant

    Dears,

    Is there any plugin that would enable buddypress users to accept friend ship request automatically ? I searched a lot .. but found nothing.. Please help

    Thank you,
    Tony Thomas

    #311030
    sanra84
    Participant

    hi,

    i recently installed buddypress. and the menu of the member profile is not shown in the frontend: activity, profile, notivications, news and so on. when i click on that in the backend, then i came to a page, but there is nothing:
    https://www.dasnetzwerk.net/mitglieder/sandra/profile/

    thank you

    #311029
    bpotter78
    Participant

    So I did a theme conflict test, and low and behold, when I changed to TwentyTwenty theme the login worked.

    But the thing is, the theme I’m using (VideoPro) was built specifically for BuddyPress use.

    So I’m still stumped.

    #311028
    bpotter78
    Participant

    Hello,

    I’ve searched everywhere the past 48 hours for a solution to this, but cannot find anything. Not even on the Youzer support!

    I recently installed Youzer and set it up step-by-step.

    The login and registration pages look and work fine, I can register and activate the account successfully.

    But when I start from scratch and login from the login page, after clicking the Login button, the page just refreshes back to the login page, and not redirected to the Buddypress profile. In fact, the login doesn’t actually log into my account. It just refreshes back to the login page where I have to start again.

    I’ve deactivated/reactivated all plugins etc, and I’ve double checked the login redirection settings both in the theme and Youzer. And cleared browser cache. But still nothing.

    Any advice would be greatly appreciated, thanks.

Viewing 25 results - 4,501 through 4,525 (of 73,986 total)
Skip to toolbar