Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 2,401 through 2,425 (of 68,969 total)
  • Author
    Search Results
  • #319470
    nathan767
    Participant

    Good Day,
    I currently have BuddyPress Create Group Type and BuddyPress installed on my word press website. I use it such a way the administrators of each group do not necessarily have to edit a few of the settings because they are usually less tech savy. I would like to know is it possible to hide some of the settings on the front end in the management window such as settings, delete and forums.

    Also I would like to know if it is possible to have the email information that is sent to person when they are rejected from a group to be changed? Because we find the you have been rejected message a bit harsh.

    #319464
    isans
    Participant

    Hi,
    Well as BuddyBoss is just a fork of BuddyPress, and considering most of the stuff that works for BuddyPress works for BuddyBoss too… In fact I’m pretty sure that for this exact problem I have both plugins work the same way.

    I already asked them and they didn’t help me at all. Besides, they don’t have any kind of user forum, and this community looks way more helpful.

    #319463
    shanebp
    Moderator

    These are the forums for BuddyPress.
    If you are using the BuddyBoss plugin – you need to contact them with your questions.

    homelesshenry
    Participant

    I’m trying to change the excerpt length for the activity feed. And I can’t figure out why it’s been so difficult.

    For example, I’ve used the following code:

    function buddydev_modify_excerpt_length( $length ) {
    	$length = 1225;
    
    	return $length;
    }
    add_filter('bp_activity_excerpt_length', 'buddydev_modify_excerpt_length' );

    I even went into bp-core/bp-core-template.php for a hard-coded solution:

    function bp_create_excerpt( $text, $length = 1225, $options = array() ) {

    Still it doesn’t change my excerpt length. I then thought it might be the theme I’m using (Buddyboss) and went poking around but couldn’t find anything; although maybe there is something and I didn’t look well enough.

    Otherwise, could it have anything to do with the activity feed posts in question being added post types (woocommerce product pages) via the guide by Mathieu Viet:

    Post Types Activities

    Anyone else have similar issue or know what it might be?

    #319436

    In reply to: Hi {{recipient.name}}

    jmouram
    Participant

    Helo!

    I am also new to programming and spent a lot of time trying to find where I could translate this text.
    But after I understood, I found it very easy (but really easy!).
    You simply enter buddypress/bp-core/bp-core-template.php

    Find the word salutation, or go to the end of the content.
    This text is linked to the bp_email_get_salutation function

    Just replace the lines:

    _x( 'Hi,', 'Unnamed recipient salutation', 'buddypress' )
    _x( 'Hi %s,', 'Named recipient salutation', 'buddypress' )

    by the words that your language.

    I think by the time of your post I won’t be able to help you, but I hope I can help other people with the same difficulty we had.

    Greetings!

    #319435
    jmouram
    Participant

    Helo!

    I am also new to programming and spent a lot of time trying to find where I could translate this text.
    But after I understood, I found it very easy (but really easy!).
    You simply enter buddypress/bp-core/bp-core-template.php

    Find the word salutation, or go to the end of the content.
    This text is linked to the bp_email_get_salutation function

    Just replace the lines:

    _x( 'Hi,', 'Unnamed recipient salutation', 'buddypress' )
    _x( 'Hi %s,', 'Named recipient salutation', 'buddypress' )

    by the words that your language.

    I think by the time of your post I won’t be able to help you, but I hope I can help other people with the same difficulty we had.

    Greetings!

    #319434
    RS Seo Solution
    Participant

    Oh sorry,

    Someone suggest me for bbpress but i think its buddypress. Thanks for quick response and suggestion.

    #319433
    shanebp
    Moderator

    BuddyPress does not create forums – use bbPress for that.
    And ask bbPress if it can import your existing forums.

    #319432
    shanebp
    Moderator

    BuddyPress loads templates for all profile screens.
    It should create a WordPress page for ‘Members’, but nothing else related to profiles.
    And youzify replaces all the BP templates.
    If you are trying to customize youzify profile screens, you should contact their support for instructions.

    #319428
    tomo974
    Participant

    Hey there,

    I am a complete newbie to wordpress and BuddyPress, not able to write code. I did install BuddyPress, as well as Youzify on a OceanWP theme.

    So far everything works, but BuddyPress did not create pages for the profile of the user. I did create a new Page for the user profile but BuddyPress doesn’t automatically put the user profile on that page. How can i change that?

    Thanks for answers

    #319422
    Blair Geddes
    Participant

    Just following up on this previous query. We had dialogue with Mediapress which we use too. They’ve replied outlining the query though ultimately lies in BuddyPress settings. See below fore reference:

    https://wordpress.org/support/topic/edit-go-to-the-discussion-url/#post-14570858

    Is it possible to re-look at this and advise how the URL structure is edited in BuddyPress please? I guess looking for a solution to drop into functions.php or elsewhere in child theme. Thanks.

    #319395
    rossellam
    Participant

    Just solved using WP registration because no way to use register page

    I added bp-custom.php in /wp-content/plugins

    this is code:

    /**
    * Disables BuddyPress’ registration process and fallsback to WordPress’ one.
    */
    function my_disable_bp_registration() {
    remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
    remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' );
    
    add_filter( 'bp_get_signup_page', 'firmasite_redirect_bp_signup_page');
    function firmasite_redirect_bp_signup_page($page ){
    return bp_get_root_domain() . '/wp-login.php?action=register';
    }
    #319389
    shanebp
    Moderator

    Are you using the myCred plugin or Youzify?
    If so, try deactivating them and see if the issue persists.
    If the issue does not persist, then please contact the creators of those plugins.
    There have been similar reports from other users of those plugins – it is due to their code hooking into BP actions too early, before BP has loaded all the BP components.
    More info in this thread.

    #319379

    In reply to: BuddyPress 8.0.0

    kristianyanchevv
    Participant

    Hello . I have the same problem . What is the next step , who will fix this? Buddypress or myCred?

    Thank you.

    #319378
    designrus
    Participant

    Hello.

    We have an issue with a clients website, after updating to latest version we got the following error message:

    Notice: Undefined property: BP_Members_Component::$table_name_invitations in /var/www/clients/client187/web1039/web/wp-content/plugins/buddypress/bp-core/classes/class-bp-invitation-manager.php on line 53

    This has resaulted in other plugins and core lugins no longer able to be updated. Do you have a fix for this issue.

    #319372

    In reply to: BuddyPress 8.0.0

    i just checked sites I run with BuddyPress and a few smattering of BP related plugins I always use… anyway 5 of the 6 sites all use Youzify & BP 8 and seem to have no issues…. the one I have issue with has BP/Youzify too BUT MyCRED is enabled yes…

    I rolled back to previous version of BP on there in meantime then ran the Tools table create and migrate again and that worked 100% – would be interesting to see if I bumped up to BP8 on that again if issue would rec occur

    #319367
    carlos4140
    Participant

    Hi there,

    Is there a way of introducing video size limits for uploads within BuddyPress Groups without disabling video uploads altogether?

    Can this be done by plugin or (if not) code?

    Many thanks in advance 🙂

    #319366
    chenryahts
    Participant

    Hi, I think since the last update(? I only noticed today, but last I knew it was working), I can’t send private messages and get this console error when sending from https://www.do main.com/members/me/messages/compose/?r=recipientusername :

    Uncaught ReferenceError: tinyMCE is not defined
        at n.<anonymous> (buddypress-messages.min.js?ver=8.0.0:1)
        at underscore.min.js?ver=1.8.3:2
        at Function.v.each.v.forEach (underscore.min.js?ver=1.8.3:2)
        at n.sendMessage (buddypress-messages.min.js?ver=8.0.0:1)
        at HTMLFormElement.dispatch (jquery.min.js?ver=3.5.1:2)
        at HTMLFormElement.v.handle (jquery.min.js?ver=3.5.1:2)

    And it fails to send the message. Maybe someone else is having this issue?

    #319362

    In reply to: BuddyPress 8.0.0

    linguabuddy
    Participant

    Hi,

    I have a slightly different problem. User interface for invitations works perfectly but…. nothing happens. No emails are sent. Tried sending from and to a few different accounts, but nothing is coming through.

    Have checked under emails and it is there and configured.

    I’ve not been having deliverability issues for any other BuddyPress emails, so I’m confused.

    Any ideas?

    #319350

    In reply to: BuddyPress 8.0.0

    vivekmathur1969
    Participant

    Hi, I’m getting the same database error and it seems linked to Mycred, as Neo also flagged above.

    Here is the full error:

    [15-Jun-2021 13:35:49 UTC] PHP Notice: Undefined property: BP_Members_Component::$table_name_invitations in /home/customer/www/staging57.kidwise.in/public_html/wp-content/plugins/buddypress/bp-core/classes/class-bp-invitation-manager.php on line 53
    [15-Jun-2021 13:35:49 UTC] WordPress database error Table ‘dbosafnzuzggps.i’ doesn’t exist for query SELECT DISTINCT i.id FROM i WHERE class IN (‘bp_members_invitation_manager’) AND type = ‘invite’ AND invite_sent = 1 AND accepted = 0 made by require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘init’), WP_Hook->do_action, WP_Hook->apply_filters, myCRED_Core->init, do_action(‘mycred_init’), WP_Hook->do_action, WP_Hook->apply_filters, myCRED_Hooks_Module->module_init, myCRED_Hooks_Module->call, myCRED_Hook_Affiliate->run, apply_filters(‘bp_core_signup_send_activation_key’), WP_Hook->apply_filters, bp_members_invitations_cancel_activation_email, bp_members_invitations_get_invites, BP_Invitation_Manager->get_invitations, BP_Invitation::get

    Any suggestions how to fix this, please?

    thanks very much,
    Vivek

    ausiuming
    Participant

    When I uploaded a Profile Photo in BuddyPress frontend profile page, the first look is ok but when I reload the page, the *-bpfill.jpg file is replaced by a *-bpfill.svg file which is a 4×4 square colour pattern.
    Changing Cover Photo doesn’t have this problem. Also, changing Profile Photo in the backend doesn’t have this problem.

    #319332
    chrisjdahl
    Participant

    Found solution here https://wordpress.org/support/topic/bug-two-like-buttons-in-buddypress-comments/
    add_filter( ‘bp_activity_comment_content’, function( $content ) { return $content . wp_ulike_buddypress(‘put’); } );

    It still created the duplicate likes, but with some css I removed that :/

    #319329
    laghribi98
    Participant

    Hello team,
    I had an issue in my website,to give more details :
    I had 3 roles in buddyPress (Admin,Employee,Candidate)
    The admin and Employee should access to a Page A for example
    And the role Candidate shouldn’t access to Page A,
    I tried many times to solve it but nothing happened
    I use the latest version of BuddyPress

    #319322

    In reply to: BuddyPress 8.0.0

    [Table ‘buzz_.i’ doesn’t exist]
    SELECT DISTINCT i.id FROM i WHERE class IN (‘bp_members_invitation_manager’) AND type = ‘invite’ AND invite_sent = 1 AND accepted = 0

    Have manually tried to fixthis in DB by dropping table and thenusing BP Tools to recreate the table so it does exist….yet on all backend pages and front end I get this message…. yup tried deactivating all BP related plugins even buddypress and then reactivating …. cannot find issue

    Wuth error on all admin pages ajax on admin stops running

    #319317
    Varun Dubey
    Participant

    @plgupa BuddyPress does not save any data or any member or site-specific at any 2nd/3rd party server, everything stays at your server only.

Viewing 25 results - 2,401 through 2,425 (of 68,969 total)
Skip to toolbar