Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 76 through 100 (of 22,751 total)
  • Author
    Search Results
  • #336547
    giszech
    Participant

    Hi support team,
    I’ve allready asked you few monthes ago – you told me “all is ok” – but I still cannot crop a profile photo. I hoped that the issue would be solved by itself with updates – but it did not.
    Please try it yourself – https://members.life-science.eu

    I have the AVADA 7.11.14 theme, but I am worry to switch to the twenty twenty five because I will not crash the whole WebSite.
    Buddypress 14.3.3
    Wordpress 6.7.2

    You also told me it’s a problem of AVADA and AVADA told me it’s a problem of BuddyPress. I guess you understand – this doesn’t help me.
    Thanks in advance
    Best wishes

    #336532
    alexanderwbell
    Participant

    It actually appears to be a component in buddypress now apparently, so in the wordpress admin dashboard click on your installed plugins. Then under buddypress, click settings and then check friend connections and then save settings.

    Also if you would like to connect with me on social media as you said before, I am trying to grow my LinkedIn profile as I’m currently looking for a job. So unless the link gets removed, it is below:
    https://www.linkedin.com/in/alexander-bell-487a69295/

    #336511
    Renato Alves
    Moderator

    I see it is still bundled: https://github.com/wp-cli/entity-command/blob/main/src/WP_CLI/CommandWithDBObject.php

    I also think if that were true, our unit tests would fail. It is more likely you do not have wp-cli installed in your project.

    Could you confirm going over these docs?

    #336486
    rodafinos
    Participant

    I have been struggling with this for days now. Maybe the fact that I dont code plays a role.
    I used several iterations of snippets presented by AI, all failed.
    This is the latest:
    function sync_xprofile_to_user_meta($user_id) {
    $fields = bp_xprofile_get_fields_by_group();
    foreach ($fields as $field) {
    $field_value = xprofile_get_field_data($field->id, $user_id);
    update_user_meta($user_id, ‘xprofile_’ . $field->name, $field_value);
    }
    }
    add_action(‘xprofile_updated_profile’, ‘sync_xprofile_to_user_meta’);

    // This function is not automatically executed
    function sync_all_xprofile_to_user_meta() {
    $users = get_users();
    foreach ($users as $user) {
    sync_xprofile_to_user_meta($user->ID);
    }
    }

    I think this one caused critical error.

    WordPress 6.7.2
    Website edited: removed link
    bbPress Version 2.6.11
    Code Snippets Version 3.6.7

    jenniferwatson
    Participant

    Hi,

    I am facing an issue with the media upload option in BuddyPress on my Community Guidelines page. When I try to upload a media file:
    The “Choose File” option appears, and the file successfully uploads in the interface.
    However, the file suddenly disappears, and I get a red error message saying, “Please choose some content to post.”

    Steps I’ve Taken to Fix It:

      Tried using custom code to resolve the issue—no success.
      Cleared cache from the hosting panel and WordPress dashboard.
      Checked for plugin conflicts by disabling all other plugins, but the issue still persists.
      Tested on different themes—the issue remains.

    Moreover strange thing is, Media upload works fine if I go to My Profile → Media and post on my feed.
    The issue only happens inside Groups—media upload is not working on group posts.
    I have also reviewed some BuddyPress articles where users reported the same issue, but I didn’t find a resolution.
    i.e, https://buddypress.org/support/topic/cant-upload-media-from-sitewide-activity-stream/

    As I am handling a community website, I urgently need this feature to work.
    Please provide guidance on how to fix this issue.

    My Site’s URL: edit: link removed
    Thank you!

    emaralive
    Moderator

    The answer to your initial post can be found at the following:

    BP Template Pack JavaScript and Style assets are now only loaded into the community area of your site

    As to your 2nd post, most likely via the following:

    wp_localize_script( 'bp-nouveau', 'BP_Nouveau', apply_filters( 'bp_core_get_js_strings', $params ) );

    teslavolt
    Participant

    I have a custom template page that I’ve added specific bp-activities and its comments (pulled some code from the activity-loop).

    In Buddypress v11.4.3, everything was working fine, the activity displays and comments + reply functionality works – click on a reply and the .ac-form moves to selected reply/comment and it nests it as expected.

    Since Buddypress 12, replies no longer work. I think it’s because the Buddypress scripts no longer load on NON-buddypress pages. I tried enqueueing Buddypress scripts myself using a function:

     function load_bp_activity_scripts(){
        wp_register_script("bpnouveau", "/wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/buddypress-nouveau.js");
        wp_register_script("bpactivity", "/wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/buddypress-activity.js");
        wp_register_script("bpactivitypost", "/wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/buddypress-activity-post-form.min.js");
        wp_register_script("bpmentions", "/wp-content/plugins/buddypress/bp-activity/js/mentions.min.js");
        wp_register_script("corecaret", "/wp-content/plugins/buddypress/bp-core/js/vendor/jquery.caret.min.js");
        wp_register_script("coreatwho", "/wp-content/plugins/buddypress/bp-core/js/vendor/jquery.atwho.min.js");
        wp_enqueue_script("bpnouveau");
        wp_enqueue_script("bpactivity");
        wp_enqueue_script("bpactivitypost");
        wp_enqueue_script("bpmentions");
        wp_enqueue_script("corecaret");
        wp_enqueue_script("coreatwho");
    }
    add_action("load_bp_activity", "load_bp_activity_scripts");
    function load_bp_activity(){ do_action( 'load_bp_activity' );}

    but just loading the scripts is not enough. When I replaced buddypress-activity.js with my own version to debug, I noticed that BP_Nouveau returns as ‘undefined’ and so none of the script functionality would run.

    I’m probably missing something really simple but how can I load Buddypress core scripts or styles in my own custom wordpress template?

    #336364
    emaralive
    Moderator

    Hiding – not easily seen.

    The constants you’ve indicated are for WordPress and are typically defined within wp-config.php, if you search for one of those constant names, does it show up in your search results?

    #336363
    asmaajaved
    Participant

    I don’t understand what you mean by hiding… but this is the environment settings I see in site health…

    Wordpress
    Environment type —- production

    and in constants I see this..

    WP_ENVIRONMENT_TYPE Undefined
    WP_DEVELOPMENT_MODE Disabled

    #336348
    yatesa01
    Participant

    This is still an issue a year later. I figured out how to submit a ticket: https://buddypress.trac.wordpress.org/ticket/9268#ticket

    #336341
    asmaajaved
    Participant

    Yes I am able to visit member pages. I have tried everything disabling theme changing wordpress versions. disabling all plugins..

    yes I can visit just /groups/
    and I can see all the groups in there. Just the individual group does not work.

    #336322
    emaralive
    Moderator

    Hi @asmaajaved,

    I’m not sure if this an edge case, so more information is required, e.g.:

    1. WordPress version
    2. WordPress permalink setting(plain or pretty URLs)
    3. WordPress theme in use
    4. BuddyPress version
    5. BuddyPress template pack in use
    6. What does your error log reveal?

    It would also help to have a screenshot of:

    the single groups pages show up empty

    #336321
    emaralive
    Moderator

    Hi,

    The BuddyPress Featured Members plugin appears to be authored by BuddyDev. Have you tried their support forum?

    BuddyDev Support – BuddyDev site

    Or

    [BuddyPress Featured Members] Support – WordPress Forum

    #336219
    videowhisper
    Participant

    You could take a look at this free plugin we’re developing: FansPaysite MicroPayments https://wordpress.org/plugins/paid-membership/ .

    Flexible Monetization: Offer creator subscriptions, pay-per-view content, and memberships tailored to various creator needs.

    Direct Content Sales: Creators can directly sell access to posts, videos, downloads, live video streams, enhancing revenue opportunities.

    Versatile Payment Integration: Supports all major gateways with WooCommerce, including PayPal, Stripe, CCBill for broad accessibility.

    Reduced Transaction Fees: Streamline finances with microtransactions that cut down on costs.

    Dynamic Wallet System: Enables secure, in-site transactions with internal credits and support for other popular wallets like TeraWallet and MyCred.

    Enhanced User Engagement: Features like crowdfunding and donations add interactive elements to content monetization.

    Comprehensive Admin Control: Manage access, monitor transactions, and customize content offerings with ease.

    BuddyPress Integration: Enhances community features, allowing for real-time updates and user interactions within the platform.

    scotnet
    Participant

    Hello
    I look after the following website as a volunteer:

    About

    A function that has been working perfectly well for years has just stopped working, and I think it is an issue with my Buddypress Featured Members plugin (version 1.1.2).
    My WordPress version is 6.7.1 and my main Buddpress plugin version is 14.3.3.

    This is what is happening: when I try and edit the committee page, I am no longer able to update the committee members. I click on the block featuring the member, click on the pencil to update the member, then I get a dialogue box saying “Buddypress Member, Start typing the name of the member you want to feature into this post’. I type the first few letters, and after a long delay another box appears with a list of members. However, the members that appear are the same everytime, regardless of the letters I type, and do not include anyone whose name starts with the letters I have typed in the dialogue box. Therefore, I cannot change the member.

    Any help would be much appreciated.
    Many thanks
    Lisa

    davesumpter
    Participant

    Hi
    I am using wordpress 6.7.1 and buddypress 14.3.3.
    When a user logs in, there is a top left logo. if users clicks on this it currently goes to the home page/login. How do I override this so it goes to the users feed instead?

    #336213
    venthi7
    Participant

    Hi,

    Came across this post on reddit https://www.reddit.com/r/Wordpress/comments/16m09tp/comment/lk6ednn/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button

    The person suggests about some improvement they did which resulted insane speed improvement. Just thought of sharing in case it helps. If it doesnt, then my apologies.

    Thanks.

    seeanimalswild
    Participant

    I am using bbpress for discussion in my wordpress website, and using armember for the underlying members stuff (though I am going to be using the bbpress profile).

    I have a number of armember groups running on the site (supporters, members writers etc). What I want though is to be able to have people be friends within their own group – but to follow those in other armember groups.

    Anyone know how to do this? Obviously, i want supporters to be free to make friends, but i don’t want them to be able to ‘friend’ a lister, and then arrange their trip, and avoid paying the marketplace fee.

    I hope someone else can help with how to do this?

    Thanks in advance for any support – I’m happy to be pointed to the answer to someone else’s question, but i couldn’t find anyone looking for this info.

    fleurdor
    Participant

    Bonsoir, j’ai besoin d’aide s’il vous plait!
    J’utilise le serveur Xampp en local pour créer mon site de communauté en ligne avec WordPress version 6.7.1. Pour ce faire j’ai installé le plugin buddypress version 14.3.3 et le thème spacious version 1.9.8 avec la demo spacious company. J’ai également installé tous les plugins nécessaires à la demo spacious company à savoir social-icons, elementor et everest-forms.3.0.7.1. le plugin themegrill-demo-importer.1.9.9 est également installé. Cependant après configuration seuls les menus d’en-tête; principal et le menu de pied s’affichent. Le contenu de la page ne s’affiche pas, pourtant j’ai installé et activé le plugin Buddy default data pour ajouter des groupes, des membres, des sujets… sur les différentes pages dédiées à cet effet. Qu’est ce qui peut causer cela et comment le corriger s’il vous plait?

    #336133
    dracou
    Participant

    Hi,

    I want to have multiple groups co-existing into the same wordpress installation.
    I created 4 dummy users:
    user1 and user2 belong to demo1 member type from the extended profile tab
    user3 and user4 belong to demo2 member type from the extended profile tab
    img

    Now, I noticed that user3 can see the content of user1 and user2. Please note that I named my demo users with display name including the “group” they belong to 😉
    img

    How can I make sure that all content of a specific and defined (by what) group of users is strictly private and can be seen only by members of this group?

    Anyone an idea please?

    Thanks,

    #336112
    alfiez
    Participant

    To apply a different template for BuddyPress pages in the latest WordPress block theme, you can create a custom template (e.g., bp-custom-template.html) in your theme’s templates directory. Then, use a filter in your functions.php file to assign this template to BuddyPress pages using code like:

    php
    Copy code
    add_filter(‘template_include’, function($template) {
    if (bp_is_buddyPress()) {
    $custom_template = locate_template(‘bp-custom-template.php’);
    return $custom_template ?: $template;
    }
    return $template;
    });
    This allows you to customize the layout for BuddyPress pages without relying on the default “pages” template.

    #336104
    emaralive
    Moderator

    Hi @mike80222

    This is an issue with bbPress and there is an open ticket Deprecated Warning ##3589 in bbPress Trac.

    You will have to ask the folks over in bbPress as to the status of this ticket.

    #336094

    In reply to: buddypress documents

    José Manuel
    Participant

    I’m actually attaching it to the frontend
    The version of Woody Press I’m using is the latest
    As a caching system I use a WordPress plugin (wp-optimize)
    I’m sending you two simultaneous screenshots from different browsers, the one on the right is Chrome

    And look at the link they generate, it’s exactly the same but with different results.
    Please tell me, I forgot to indicate in the previous message that I have Buddy Press installed on a subdomain but with the domain’s database.
    This could possibly be the problem
    And also now that it tells me so when I go to the subdomain’s media, the PDF file doesn’t appear.

    Before

    After

Viewing 25 results - 76 through 100 (of 22,751 total)
Skip to toolbar