Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 26 through 50 (of 73,986 total)
  • Author
    Search Results
  • tim4578
    Participant

    Hello!
    I am using BuddyPress + BUddyBuilder + bbpress + Woocommerce for subscriptions.
    I now have the problem that for testusers there is no profile being displayed. When navigating with my admin profile, I can open the “my account” page without any problems, the full BuddyPress Profile with Woocommerce integrations are being displayed.
    Do you have any idea how I may resolve this issue, so that users can access their profiles?

    Thanks and best regards

    #337990
    locker17
    Participant

    I meant the link because there is no button.
    To risca, it depends which template you use, default or novoue. If it is novoue pick up the template file for the emails, search for the unsubscribe link and delete or comment it out. Then save this file in a directory called buddypress with the same folder structure in your child theme directory.

    emaralive
    Moderator

    The login page shown in the 1st screenshot is due to having the Community Visibility option set to “Members Only” (Private Community) within BuddyPress options. This option was introduced in version 12.0.0 and there appears to be some situations in which the default WordPress login page appears as opposed to the intended “Private Community” login page. Nevertheless, the “Private Community” login page can be disabled by utilizing the bp_view_no_access_redirect_to_login_screen filter hook and you will want your callback function to return a value of true. The following link is the line of code where the filter hook resides for v14.3.4:

    bp_view_no_access_redirect_to_login_screen

    The registration page shown in the 2nd screenshot is actually the BuddyPress registration page. Why it looks different is because the Buddyx theme is utilizing CSS rules to alter/change the appearance. You should contact Wbcom Designs support regarding the restoration of the default appearance.

    #337971
    emaralive
    Moderator

    The snippet does what it is coded to do, therefore, either the snippet is not being invoked or there is something else (possibly a plugin, theme or other custom code) that is counteracting the snippet.

    I’m not familiar with the “username only” plugin, is this plugin available via the WordPress plugins directory? I’m asking because this plugin or some other external factor (a different plugin or theme) might be disrupting the normal flow of events.

    The snippet relies on the bp_get_title_parts filter hook which relies on the bp_modify_page_title() function to be invoked by the wp_title filter hook.

    You can try hooking the snippet to the wp_title filter hook to see if that makes any difference, i.e., change:

    From:

    
    add_filter( 'bp_get_title_parts', 'yz_change_buddypress_browser_tab_title', 999 );
    

    To:

    
    add_filter( 'wp_title', 'yz_change_buddypress_browser_tab_title', 999 );
    
    #337970

    Topic: Supporter Badge

    in group forum Third Party Plugins
    werny
    Participant

    I need a way to add a sort of Supporter Badge to all my Buddypress-users who support me.
    A custom badge should be shown on their profile.
    It also should be clickable (link to a specific page)
    Is that possible? What options do I have?

    #337956
    emaralive
    Moderator

    From what I can tell, the snippet replaces the text portion of what BuddyPress would normally add to the meta “title” with the text “XXXX” (without the quotes). For example on a members profile view page (site.url/members/username/profile):

    Display name of user: test
    Website name: Apple

    Without snippet: Profile | test | Apple

    With snippet: XXXX | Apple

    The snippet (copy & paste) was checked for use in the bp-custom.php file and the functions.php file of a child theme. Perhaps, you could elaborate a bit more as to the steps you took to implement the snippet and what you expected the result to be.

    #337947
    locker17
    Participant

    Delete it in the email template of your theme and upload it to buddypress folder in your theme directory to be update safe.

    #337938
    Kir 2012
    Participant

    Hi – apologies if this is a really obvious one but I don’t seem to be able to find a way to do it.

    On my buddypress profiles, I’m using usernames and the mention names. I don’t want real names to appear anywhere and it appears in the browser tab, is there a way to change it? I found this but it doesn’t seem to work for me, any suggestions gratefully receieved? Thanks 🙂

    // Change User Profile Browser Page Title.
    function yz_change_buddypress_browser_tab_title( $bp_title_parts ) {
         
        if ( bp_is_user() ) {
        	return "XXXX";    
        }
    
        return $bp_title_parts;
     
    }
     
    add_filter( 'bp_get_title_parts', 'yz_change_buddypress_browser_tab_title', 999 );
    #337937
    Ricsca2
    Participant

    How can I remove the “unsubscribe” link at the bottom of emails sent by buddypress to users?
    Thanks

    emaralive
    Moderator

    BuddyPress utilizes the WordPress login page by default. There are plugins that will alter or replace the standard WordPress login page.

    #337930
    emaralive
    Moderator

    This is been asked before in different topics with various solutions offered. There is one solution that may work for you, which is represented as a GitHub Gist:

    Disable BuddyPress Signups feature

    The Gist came from a reply that is located here.

    Another solution is provided by the LoginPress plugin that has a coding example that is similar to the Gist code. The code is located near the bottom of this page.

    Other than those examples, you can read through other conversations related to this topic that may be better fits for your situation.

    #337921
    Ricsca2
    Participant

    I solved it with chatgpt which had made me a plugin to put .html also in the forum (which like buddypress does not depend on the parmalinks that are set on wp).

    #337920
    Ricsca2
    Participant

    /%postname%.html
    I’m importing an old site that had parmalinks like maysite.com/name-article.html, so I set the parmalinks to /%postname%.html.

    But now, since buddypress doesn’t have a / after the %/, it’s breaking the forum tab URLs, even though the buddypress links don’t contain the .html because they don’t follow the custom parmalink rules.

    #337911
    Ricsca2
    Participant

    If Permalinks aren’t set with / at the end of /%postname%/ but, for example, /%postname%.html, even though it doesn’t actually affect the BuddyPress URLs, only the posts and pages, when navigating the forum tabs, the / is missing and the URL is broken.
    For example: to see a user’s replies, the URL is
    /members/ricscaforums/replies/
    and not
    /members/ricsca/forums/replies/

    #337907
    inventis
    Participant

    Hi,

    We are using BuddyPress to integrate with LearnDash.

    The LearnDash registration form is now not working as when a customer registers, it redirects to the BuddyPress registration form.

    Is there a way to disable the BuddyPress registration feature so we can use just the LearnDash registration setup.

    Thanks

    #337898

    In reply to: Widget buddypress

    Ricsca2
    Participant
    #337895

    In reply to: Field Visibility

    emaralive
    Moderator

    I stated that the visibility for WordPress Fields are “currently” not user selectable. Why this decision was made was unknown to me, until recently, and appears to be along the same lines of why the “Requirements” metabox doesn’t appear for the WordPress Fields, as well.

    Given this conversation, I looked for a possible reason that might uncover a decision to not include such capabilities and found that ticket #8487 (Add visibility and required controls to the WordPress profile fields) provides the history behind why the decision was made not to include the capabilities (visibility and requirements) and why these capabilities have yet to be incorporated (no one has provided a patch).

    #337893

    In reply to: Field Visibility

    emaralive
    Moderator

    Currently, the visibility for the following xprofile fields aren’t “user” selectable:

    • 1st Text Field – labeled as “Name” by default
    • Single Fields – Checkbox Acceptance
    • WordPress Fields – Biography
    • WordPress Fields – Text Field (First Name, Last Name, Website)

    In your example, “surname” as you have applied would be “WordPress Field – Text Field – Last Name” and as indicated the visibility is not “user” selectable.

    As to the other xprofile fields the visibility can be set for either:

    • Allow members to override – visibility is selectable by users
    • Enforce field visibility – visibility is set per selection

    Admin can set the visibility during creation or editing of xprofile fields that allow for “Visibility” settings, e.g., Single Fields – Text Box will have a “Visibility” metabox whereby an Admin can set the “Visibility” parameters. See BuddyPress xProfile fields administration for other information.

    #337880
    mhmart
    Participant

    Ok, to answer my own question the solution was to select the ‘Reset emails (delete and reset to default values).’ option in wp admin > tools > buddypress > repair

    Thank you for the help! indeed the issue was missing templates for some reason.

    #337879
    mhmart
    Participant

    I am very sorry for the confusing. I wasn’t aware of that part that needed to be activated. In the BP settings I activated Activity and then, as you said, I could mention a person. I both mentioned me and in another post I mentioned someone else. Neither me or the other person received any email.

    Now I did check the Emails > All Emails page in the admin and I only found 6 of them.
    Is there a way of restoring the 21 email templates as you suggested? I assume that this indeed is causing the issue.

    I found these options in the repair tool of buddy press emails, but I will not click anything before I’m sure what it might cause:
    (used google translater from dutch).

    • Reset all BuddyPress slugs to default slugs.
    • Fix the total group count for each member.
    • Fix the total member count.
    • Reset emails (delete and reset to default values).
    • Create the database table for invitations and migrate existing group invitations if necessary./li>
    #337877
    emaralive
    Moderator

    Your second answer is a bit confusing, if you have the Activity component activated, then all you would have had to do was to enter @username (replace username with your actual username) in the Activity post form and the click “Post Update”, afterwards you could delete the post. The reason for doing this is to test whether or not BuddyPress (BP) is sending emails in general and your issue isn’t just isolated with the changing of email address.

    Moving along, BP, by default, has a finite number of email templates with corresponding situations that will fire/send an email based on the situation: For example:

    • 21 email templates for a single site installation
    • 22 email templates for a multisite installation

    You can verify the count of email templates by clicking the menu items “Emails > All Emails” within the wp-admin area. You should have a “Published” count number the is equal to or greater than what was previously indicated.

    The email template that is responsible for sending the “email change notice” is:

    
    [{{{site.name}}}] Verify your new email address
    

    Make sure the template is present and the status is set to “Published”. Additionally, check that the situation assigned to this template is:

    
    settings-verify-email-change
    

    If these conditions are true (template is present, published and the correct situation is assigned) then BP should be sending the “Verify your new email address” email”, given that you aren’t receiving errors that might be interrupting the sending process.

    #337867
    emaralive
    Moderator

    OK, sounds good and I’ll consider this topic resolved. FWIW, BuddyBoss is a fork of BuddyPress with obvious differences.

    Take care.

    #337865
    phil1ooo
    Participant

    Hi

    Thanks for the response BUT I am the one that added/created these 2 fields as there was nothing there before that, wanting to see what they do and where and how they are displayed, then not happy with the result I want ed to delete them,, I did delete one as it had that option at the bottom right corner but this one has nothing.
    Having said that – based on Your comment – I will change the name to what Name? .

    Having said that I must tell you that I have since converted my plugin from BuddyPress to BuddyBoss and will be keeping that option as it has far more detailed usability which suits my needs better, BuddyPress was great though – I am not sure if yoiu are both connected to each other or not so if not, your help is still valuable for buddyboss although it added a few other fields, plus I am still using a few buddypress plugin extension with the buddyboss.

    Cheers
    Phil

    #337864
    mhmart
    Participant

    I am sorry for the ambiguity, it is option 1.

    fot the BP process, both emails are being sent. However, for the buddyPress frontend, verify “your new email address” is not being sent.

    #337863
    emaralive
    Moderator

    I’m not clear on which/what email that is not being sent. AFAIK, there are 2 emails sent for a successful email address change, for example from the WordPress (WP) backend:

    1. Email Change Request <- contained in subject line as sent by WP
    2. Email Changed <- contained in subject line as sent by WP – after a successful change of email address

    For the BuddyPress (BP) frontend:

    1. Verify your new email address <- contained in subject line as sent by BP
    2. Email Changed <- contained in subject line as sent by WP – after a successful change of email address

    For the BP process, please indicate which of the 2 emails is not being sent.

Viewing 25 results - 26 through 50 (of 73,986 total)
Skip to toolbar