Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 751 through 775 (of 73,985 total)
  • Author
    Search Results
  • #333303
    testovac
    Participant
    #333302
    Mathieu Viet
    Moderator

    Hi @windhillruss

    Sorry to read you’re facing this issue. It should be resolved in next BuddyPress minor version. See #9108. If you are using a staging site (cloning your production site config), don’t hesitate to test the fix to be sure it’s also the case for your site’s config.

    #333300
    thinlizzie
    Participant

    Hi dvalken

    Just to add info:

    This issue has also been on my site for four years.
    Only affects Android devices, not iPhone or pc/laptop.

    When the buddypress drop-down items in the admin bar are clicked (top-right on screen) , for example Activity, Profile, Notifications, Messages, then the first sub-menu item is automatically selected and clicked without any user action. The user is unable to select the second or third sub-menu item.

    Default WordPress Twenty Sixteen Theme.
    Buddypress 10.6.1

    testovac
    Participant

    i Have this link now: https://domain.com/member/johndoe/activity/512/
    but need this: https://domain.com/512/

    how i can do that by some php snippet? pls help

    Something like this? but its bad code i mean

    function custom_activity_link($activity_id = false) {
        global $bp;
        if (!$activity_id) {
            $activity_id = bp_get_activity_id();
        }
        return home_url('/' . $activity_id . '/');
    }
    
    function change_buddypress_activity_permalink() {
        global $bp;
        $bp->activity->root_slug = 'activity';
        add_rewrite_rule('^([0-9]+)/?$', 'index.php?pagename=activity&p=$matches[1]', 'top');
    }
    
    add_action('bp_init', 'change_buddypress_activity_permalink', 2);
    add_filter('bp_get_activity_thread_permalink', 'custom_activity_link', 10, 2);
    #333296
    dvalken
    Participant

    Hello everyone, im busy with my new website and trying to use BuddyPress, but the default menu (the toolbar one) is not working properly when on mobile, im using Astra as theme with the latest WordPress and BuddyPress and no other plugins yet,but somehow i cannot find out how to fix it.

    So when on on mobile the login works just fine, but when logged in the problem appears, when you click the profile icon on the toolbar the menu appears like normal, but when i want to open the submenus ( 4 instance when i want to open Activity – > Personal, im not able to click on Personal since its already opening Activities, its opening the submenu aswell dont get me wrong but by clicking to open the menu to be able to click on personal its already loading the linkt thats under activity.

    Anyone having an idea on how to fix this?

    #333287
    Scordisian
    Participant

    I am somewhat at a loss with all the changes. I am using LiveCanvas for templating. There is a conflict with Buddypress when it comes to the Dynamic Templating aspect of Buddypress. For some reason, Buddypress pages are not being excluded. Not even when I put the Buddypress templating files in the Child Theme, making the use of Buddypress not an option. Any assistance is greatly appreciated.

    mervyntsao
    Participant

    I have installed the buddypress plugin on my site. But there is no way to edit the generated page https://ohwhat.com/activity/ and https://ohwhat.com/members/ and others. Those two URLs are not listed in my WordPress “Page” dashboard.

    #333277
    bastibln
    Participant

    Hey tuckeror,

    Actually this should not be this complicated. In the buddypress options you can choose a page which represents the directory of your web project.

    It is then only about the settings of the chosen page. Use the usual WordPress options to set the hierarchy, which parent sites the mentioned page should have.

    I hope this helps.

    #333271
    Mathieu Viet
    Moderator

    Hi @pachat,

    If one of your plugin or your theme is hooking to bp_uri then it means it’s not ready yet for BuddyPress 12.0 & up. For these situations we are making available a backwards compatibility add-on I advise you to install & activate:

    BP Classic

    #333270
    pachat
    Participant

    Hi, v12.2.0 is breaking my site WPv6.4.3 + BuddyPressv12.2.0 + bbPressv2.6.9 + Theme Beehivev1.4.5

    https://mysite.fr/members-2/0qchw/activity/
    Deprecated: Le crochet bp_uri est obsolète depuis la version 12.0.0, sans aucune alternative disponible. in /home/mysite/wp-includes/functions.php on line 6031
    Warning: Cannot modify header information – headers already sent by (output started at /home/mysite/wp-includes/functions.php:6031) in /home/mysite/wp-includes/pluggable.php on line 1435
    Warning: Cannot modify header information – headers already sent by (output started at /home/mysite/wp-includes/functions.php:6031) in /home/mysite/wp-includes/pluggable.php on line 1438
    That’s all on the activity page

    On other pages, I get only the Deprecated message
    Also on the forum page which shows no poste.

    HTH

    #333268
    mervyntsao
    Participant

    I have installed the buddypress plugin on my site. But there is no way to edit the generated page https://ohwhat.com/activity/ and https://ohwhat.com/members/ and others. Those two URLs are not listed in my WordPress “Page” dashboard.

    bastibln
    Participant

    Hey guys,

    I have been trying a lot but cannot find a working solution for my problem:

    During registration, I don’t want the visitors to choose their own usernames. Instead I want them to have standardized ones, like 8-digit numbers so they all look like “24021515”,”24021516″, etc.

    The reason behind this is the usage of the username while chatting on my buddypress site. The topic of the website is quite formal and I don’t want “crazy” usernames to be seen there.

    Long story short: I have been trying to add functions in the bp_core_signup_user() but without success.

    function custom_bp_core_signup_user($user_id, $user_login, $user_password, $user_email, $usermeta) {
        // Check if user is now registered
        if ($user_id) {
            // Create some dynamic ID
            $dynamic_id = '';
            for ($i = 0; $i < 7; $i++) {
                $dynamic_id .= rand(0, 9);
            }
            // I want all the usernames to start with a "1" and then add 7 random digits
            $new_username = '1' . $dynamic_id;
    
            // Update the user
            wp_update_user(array('ID' => $user_id, 'user_login' => $new_username));
        }
    }
    
    add_action('bp_core_signup_user', 'custom_bp_core_signup_user', 10, 5);

    I have been trying this with the functions.php and with some selfmade plugin. Can anyone help?

    Thanks a lot !

    #333264
    tuckeror
    Participant

    Hi, I’m setting up BuddyPress 12.2.0 in WP 6.4.3. By default the BP url structure is at the root, e.g., http://www.mysite.com/members. I would like all BuddyPress pages to be in a subdirectory, e.g., http://www.mysite.com/community/members. I would also like indvidual user profiles to be in the members directory, e.g. http://www.mysite.com/community/members/user1 (not http://www.mysite.com/user1 as it is now). I found some similar questions about this but they were more than 10 years old and I think the old solution may have been deprecated. Should I use a rewrite function? Thanks for any help.

    jamesholafer1002
    Participant

    It seems like the issue might be related to the context in which you’re trying to display the messages.php content. Check if the required BuddyPress functions are available on the pages where you’re trying to include the snippet. Additionally, ensure that the necessary scripts and styles are enqueued for those pages. Double-checking these aspects might help resolve the display issue

    #333252
    kinghuzi
    Participant

    I totally get your frustration with not being able to optimize member page titles in BuddyPress using popular SEO plugins. It’s surprising that BuddyPress itself hasn’t addressed this functionality.

    It’s a bummer that even plugins like Rank Math don’t support member page titles. Maybe looking into professional SEO services could help find a workaround for this annoying issue.

    JSanke
    Participant

    Running BuddyPress with legacy template pack. Unable to post any update to groups. Text window appears but there is no option to post it — enter/return only produces a carriage return.

    Other activity in the groups is announced in the feeds but cannot find any setting or keyboard trigger to post manually entered updates. TIA for any assistance

    #333224
    rti451
    Participant

    Hello, my site is built with WordPress and uses wpDiscuz to manage comments. I have the BuddyPress plugin plus the wpDiscuz BuddyPress Integration plugin to tie it into wpDiscuz.

    I am trying (desperately) to find a solution that will allow our members to block other members whom they don’t want to interact with. I have looked at the BudddyPress Block Members and BuddyPress Block Users plugins. The former does not work with wpDiscuz, only with the BuddyPress user profile page. I have not heard back about the latter plugin.

    Is there a solution available that will work with wpDiscuz that will add a blocking feature?

    Thanks, David

    #333223
    varadkk
    Participant

    @perihelionweb are you using ‘Activity Plus Reloaded for BuddyPress’ may be that’s causing this error. If you submit through this plugin, the issue will be seen, and that if you use default ‘buddypress’ interface to post an update that will not cause this issue.

    #333216
    robrobrobrob
    Participant

    Hi,
    When a mail sent to notify something (for exemple, a new private message), the urls inside the mail are false.
    This is because it add “http” + “https” :
    http://https//mydomain.com

    Do you know this problem ?

    WP : 6.4.3
    BuddyPress : 12.2.0

    Thank you for your help !

    NB. Sorry for my bad english…

    #333215

    In reply to: Hide pages/content

    locker17
    Participant

    I had the same issue. But the plugin you recon does not work with BP 12.X (without Classic Theme). It was last updated 8 months ago. So I chose the BuddyPress Members only plugin which does the job.

    #333206
    eluyawi
    Participant

    I have a problem with the notifications page, because when you are in the user’s profile, and you want to see your notifications, the page is not shown, a page error appears, because it does not exist.

    https://tudominio.com/miembros/horacios/notifications/
    BuddyPress Versión 12.2.0

    I don’t have any idea how fix it.

    #333199
    Varun Dubey
    Participant

    @yatesa01 @juwaretu I checked the Repair member’s last activity data, and the function seems unusable. The function starts by clearing all existing last_activity records for members from the bp_activity table. It then attempts to insert new last_activity records into the same table, pulling data from the usermeta table. BuddyPress no longer saves the data into the usermeta last activity_data unless $use_legacy_query mode is enabled.
    https://buddypress.trac.wordpress.org/ticket/9096 I have also submitted a ticket to get more insight into it.

    #333188
    xavimass
    Participant

    BuddyPress doesn’t have this functionality built-in, there are potential approaches you can explore:
    While your attempts at a custom plugin haven’t been successful, it’s still a viable option.
    Post your error logs and relevant code snippets on the BuddyPress forum thread you linked. Experienced developers can analyze and identify the issue or Hire a WordPress developer experienced with BuddyPress customizations. They can create a more robust and error-free plugin.

    Several plugins might achieve a similar result, though not always with exact feature parity:
    Creates exclusive groups where only admins and moderators can post, but members can still access content and chat.

    #333186
    Varun Dubey
    Participant

    @kmp2

    You can use the following code snippet to increase image dimension.

    function wbcom_custom_cover_image_sizes( $settings = array() ) {
        $settings['width']  = 1920; // Your desired width
        $settings['height'] = 1080; // Your desired height
    
        return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'wbcom_custom_cover_image_sizes', 10, 1 );
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'wbcom_custom_cover_image_sizes', 10, 1 );

    You can also add custom CSS for cover images to make them responsive and adapt to different screen sizes.

    you can check https://codex.buddypress.org/themes/buddypress-cover-images/ for more details

    kmp2
    Participant

    BuddyPress says:

    “For better results, make sure to upload an image that is larger than 1300px wide, and 225px tall.”
    Well, that’s what I did.

    I uploaded 1920 x 750 thinking that I would be able to crop the top or bottom off a bit… instead to my surprise, there is NO way to crop, edit, expand, reduce, the uploaded image.

    Instead, and worse, BoddyPress chops a chunk out of the middle of the BIG picture and plops it into my cover. Hideous.

    I would have expected at least that the big pic was to be sized proportionately to the 808 pixel width of the visible cover and I could have slid the pic up or down to crop the height. But no.

    So, then, WHAT was the point of uploading a larger picture to ensure “better results”?

    Then, another bad surprise. My avatar is a CLEAR PNG.

    But BuddyPress arbitrarily turned the clear part see-through white and put a white square line around it. Hideous.

    That’s the first thing I tried to do in BuddyPress, and I’m really not the least bit impressed with this half-baked cover and avatar system and its terrible result.

    I just agreed to pay a guy to configure this program of yours. Now, I’m gonna put a halt on it and try to find something else that WORKS, because I sure can’t afford to pay him to rewrite BuddyPress.

    And, by the way, I’m not entirely “unwashed”. I took computer graphics and art in university; so among other things, I do know a bit about layouts and excess white space. In fact, the guy who’s getting my cash also sold me a decent theme and was going to add a left sidebar to all posts and pages, centered between a left and right sidebar, to help resize the posts & pages to look better.

    Every time I think I’ve solved the basic problem of what system to use, by paying for a different theme and customizations as a ‘work-around’, a new problem crops up. This is very disturbing.

Viewing 25 results - 751 through 775 (of 73,985 total)
Skip to toolbar