Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 51 through 75 (of 31,072 total)
  • Author
    Search Results
  • #336778
    David Wickstead
    Participant

    Within the profile when logged in the user can select and add their own cover image. This will allow all users to have their own unique cover images.

    You might want to make sure your images are not too big and the correct proportions otherwise they will be cropped. Depending on your theme this size might vary but a good starting point would be 1350px wide and 350px tall or for full screen width 1920px x 640px.

    #336659
    michaelc1
    Participant

    Hello,
    I am currently working on my new website https://learnhisword.org/
    I am using WordPress 6.7.2 and BuddyPress 14.3.3

    No menu items are showing at all in the menus section. Can’t add them either it seems.

    I am not using a Buddypress theme! I am using the Masteriyo LMS.

    asapadvisors
    Participant

    Hi,

    I am new to buddypress. I have implemented the Kleo theme. When I am trying to sign-up with non-custom emails viz: @gmail.com or @hotmail.com, etc. The registration verification email does not reach the mailbox.

    Kindly Help

    WordPress Version 6.7.2
    BuddyPress Version 14.3.3
    https://cfoforum.co.in

    #336617

    In reply to: Infinite replies

    davesadows
    Participant

    Hello,

    I’m trying to create custom commenting on a buddypress install. I basically would like to have 2 levels of nested comments, and infinite replies without the indentation causing comments to be unreadable. I found this code, but I think it’s specific to WordPress comments, not buddypress:

    Home » WordPress » How to Have Infinite Replies with WordPress Threaded Comments

    How to Have Infinite Replies with WordPress Threaded Comments
    WordPress doesn’t allow to have infinite replies beyond the maximum nested comment depth. In this tutorial, I’ll show you how to create a “Reply” link for all threaded comments, regardless of the depth.

    Table of Contents

    Code for Infinite WordPress Replies
    No Need to Modify Core WordPress Files
    Why Increasing the Max Depth via Code Doesn’t Work
    Allow Flat Inline Replies Like on Facebook
    Related to WordPress Comments:

    How to Disable Links in WordPress Comments
    How to Remove “Comments are Closed” from WordPress
    How to Block WordPress Comment Spam Using Cloudflare
    How to Display Error Messages in the WordPress Admin
    In this screenshot, I’ve set the nested comments level to three:

    WordPress Nested Comments Three Levels Deep
    WordPress Nested Comments Three Levels Deep
    WordPress will nest comment replies to this depth and then stop showing the “Reply” link at the bottom of every comment, as shown here:

    WordPress Comment Reply Missing on Maximum Depth
    WordPress Comment Reply Missing on Maximum Depth
    Because of this limitation, visitors can’t have an ongoing conversation on your site, thereby stifling debate. The code below fixes this problem.

    Code for Infinite WordPress Replies
    To solve the above problem, paste the following code into your theme’s functions.php file, or better yet, use a custom plugin for code insertion. Whichever way you choose, here’s the code you need:

    // Add a custom reply link for infinite comments

    function add_a_reply_link($comment) {
    $temp = get_comment_id();
    $comment_handle = get_comment($temp);
    // $comment_handle = get_comment(get_comment_id());
    $comment_link = get_comment_link($comment_handle);
    $comment_id = get_comment_id();
    $post_id = get_the_id();
    $author = get_comment_author();

    $comment= $comment . ‘<p>Reply</p>’;

    return $comment;
    }

    add_filter(‘get_comment_text’, ‘add_a_reply_link’);

    // Remove the default reply link

    function remove_reply_link() {
    return ”;
    }
    add_filter(‘comment_reply_link’, ‘remove_reply_link’)

    Noel Colby
    Participant

    I added buddypress groups to the website as a feature for members to share posts on the group activity feed, live chat and create networking groups.
    However, when i go to the groups homepage and the text box at the top to share a post wont work. It lets me click on it and type but there isnt a submit button to share the post. I also had to switch the template pack from BP Nouveau to BP Legacy because on the Nouveau template the activity feed page does not even show up at all. I’m using Astra as my WordPress website theme at the moment.

    #336602
    emaralive
    Moderator

    Hi,

    Some of the answers may have to come from the Theme developer, i.e. Re-Hub theme, for example:

    1) How can I configure the user profile page? There are elements I find unnecessary for my website, and I’d like to remove them: the sharing buttons, the “write a note” option, etc.

    The “sharing buttons” and “write a note” options are not standard for BuddyPress and are either introduced by your theme in use or possibly from a plugin you have actuated.

    Additionally, without getting into a lot of detail, depending on the template pack in use, e.g., Legacy or Nouveau, there are an assortment of template pages that can be overloaded/overridden (requres advanced knownledge).

    2) Users registered on my site can publish articles using a frontend plugin, comment, etc.
    However, nothing appears in the “Activity” section: even if someone has published an article, nothing shows up. Similarly, nothing appears if they leave comments, someone replies to their comment, or tags them.
    Also, what does the “Favorites” button correspond to? With the theme I’m using, users can save articles as favorites, which are then displayed on a dedicated page. Is that what it’s supposed to refer to?

    As to “articles“, I’ll assume these are synonymous with “blog posts“, typically these are synced to “Activities” via BuddyPress settings (wp-admin > Settings > BuddyPress) by enabling the “Site Tracking” component within the “Components” tab and enabling the “Post Comments” option under “Activity Streams” within the “Options” tab. See Post comments

    As to “Favorites”, think of these as “bookmarks”, IOW, Activity items may be marked as “favorites” or unmarked as “Favorites” which will be listed within the “Favorites” tab, if marked accordingly and, yes, Favorites behave as you have indicated.

    3) On the profile page, users can change their username and select a username that’s already in use (which isn’t allowed during registration). How can I fix this?

    Usernames are unique and cannot be changed. In a “users” profile, the username is preceded/prefixed with the @ symbol. What may be confusing is the “Name” field which is more akin to the display name, to be more precise, it appears to be the “Display name publicly as”, which can be the same as the username or can be different from the username. What’s confusing is that there specific BuddyPress profile fields that correspond WordPress profile fields that may or may not have the same nomenclature. See Your Profile Screen – names section.

    It seems like you are trying to fix something like, there can only be one user with a display name of "Alice". Rightly or wrongly, I suppose confusion abounds when a “display name” is conflated as being a “username”.

    Perhaps, someone else will have a better or more precise explanation than I have provided.

    #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

    #336507
    satisfactionstate
    Participant

    Hello! Could you please help me with the issue if my custom theme. When I switch on it – I can’t create a group, because the is no any buttons ect. I use the simplest architecture at my theme: functions, page, archive, single, home, index, header, footer. And with the url mysite/groups/create/step/group-details/ the is a template of a page.php: header + footer + <?php the_content();?> There is only The title. When I switch to anoter theme – all the group setting appears when I try to create a group. I understand that there is a problem with my theme. Are there any additional requirements to use simplest custom theme with BuddyPress? Are there ane specific code or something else that I’ve missed? Thank you!

    #336499
    alexanderwbell
    Participant

    I setup a fork of the original github repo, I can’t guarantee it 100% works, especially like with following blogs and stuff like that as I haven’t tested that throughly. I also haven’t tested it with legacy themes. However, for regular following and for the following activity filters in bp_noveau etc… it should work.

    https://github.com/Alexanderwbell/buddypress-followers

    #336464
    apteksolutions
    Participant

    Hi,
    I am also testing this plugin, and I am using it with buddyboss platform and buddyx pro theme. I am encountering the same issues, especially this one with hitting enter to send a message, I hope so omeone can help with this, but it seems this thread is not active 🙁 I might end up getting help from ChatGPT 🙂

    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!

    #336394
    asmaajaved
    Participant

    copy past mistake..

    I went throught the wp-config file line by line and checked also used file manager plugin to search in files and used chatgpt to create an sql query and search in the database.
    And we do not have any child theme installed.

    #336367
    emaralive
    Moderator

    I see that this is a multisite installation, not that this should matter, it’s just that more information gets revealed over time. I noticed that define(‘WP_ALLOW_MULTISITE’, true); is listed twice; is this verbatim or just something that happened with copy & paste, just curious?

    As to base64_decode, this may not apply, this would have been a malicious attempt to obfuscate, I was just trying to rationalize why you aren’t finding where the BP_GROUPS_DEFAULT_EXTENSION constant is being defined.

    Perhaps I should ask the question differently; what tool are you using to search for the BP_GROUPS_DEFAULT_EXTENSION constant? Typically constants are defined in wp-config.php, it appears, however, the BP_GROUPS_DEFAULT_EXTENSIONcan be defined in a child theme'sfunctions.php` or a “Must Use” plugin, etc, etc.

    #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.

    #336325
    emaralive
    Moderator

    Hi @davesumpter,

    It would depend on the theme in use on how you would edit the Site Title link, assuming the Site Logo has the same link as the Site Title, you would use a URL similar to:

    https://example.com/members/me

    The “me” is the default shortlink redirector member slug. IOW, this will redirect to the profile area of the logged in user, typically, their activity stream/feed

    #336324
    asmaajaved
    Participant

    Everything is up to date so have the latest version.
    I can’t share a screenshot as its a sensitive site. But the error says “Page not found”. And the page is empty.
    Error log does not show any error related to this… Permalink setting is set to post Name…
    And template is BP Legacy..
    Theme is DIVI.

    Things I have tried so far…
    Resetting permalinks.
    changing theme.
    deleting groups page and creating it again.
    Deleting htaccess and resetting permalinks to create a new one.
    clearing cache.

    Nothing works for me.

    #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

    #336258
    cactuscat
    Participant

    Yeah, theme update cleared it. I spent 5 hours trying to find out why the trailing slash isn’t working, even telling it to force one. Clearing all of the plugins didn’t fix it. All other slashes work except for that specific header. I have to just keep fixing it manually I guess.

    #336235
    emaralive
    Moderator

    Unfortunately, you’ve applied a band-aid at the Theme level. The next Theme update will remove your band-aid and you will have to apply it again, given the approach you’ve taken.

    The bp_loggedin_user_domain( ) function should have returned a URL with a trailing slash, for example:

    http://www.url.com/members/username/

    Which is why the Theme has it written as:

    bp_loggedin_user_domain() . $bp->notifications->slug

    Something is causing the trailing slash to be missing, solving for this will be the fix. Maybe a plugin or some custom code is filtering the return value, such that is stripping the trailing slash.

    Assuming you are using BuddyPress 14.3.3, see the following URL for the source code:

    bp_loggedin_user_domain()

    davesumpter
    Participant

    Try this in the functions.php file of your child theme. I have put 777 as filed id but you will have to put in the correct field id and the correct field name:-

    function validate_required_profile_fields() {
    $required_fields = [
    ‘field_777’ => ‘The so and so field is required.’,
    ];

    foreach ( $required_fields as $field_key => $error_message ) {
    if ( empty( $_POST[ $field_key ] ) ) {
    bp_core_add_message( $error_message, ‘error’ );
    }
    }
    }
    add_action( ‘bp_signup_validate’, ‘validate_required_profile_fields’ );

    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?

    #336121
    locker17
    Participant

    This is quite strage. I am having a similiar problem. When Elementor is activated it breaks all my buddypress links. But I found out that when switching to Hello theme the links work again.
    But since my design was made for Astra this is not a solution for me.

    So my links work if

    • either Elementor is disabled or
    • Hello theme when Elementor is activated.

    Any solutions for this? The hope to get help here dies last.

    #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.

Viewing 25 results - 51 through 75 (of 31,072 total)
Skip to toolbar