Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,601 through 3,625 (of 73,173 total)
  • Author
    Search Results
  • #313829
    VibeThemes
    Participant

    This is most definitely a styling issue and not connected to buddypress at all.

    #313828
    VibeThemes
    Participant

    It is possible but not recommended. BuddyPress already has member profile fields. You should use that and it is internally supporpted by buddypress, just make sure you enable the “auto-link” in the profile field while editing the profile field.

    If you are open on exploring, the WPLMS theme has members directories built on react and they are well connected with BuddyPress profile fields, example : https://demos.wplms.io/members-directory/

    #313827
    VibeThemes
    Participant

    Try disabling ajax login in WP Admin – WPLMS – BuddyPress

    In all PHP & Cookie based login systems you will most likely need to refresh the page from the server. It may happen that when you refresh once, the browser shows as cached version, to confirm just change the url by adding a url/?1 ?1 parameter in your url to force browser to consider it as a new request.

    IF you are using version 4, this issue would not appear. The login system is built on JWT, so it happens instant without page loads and there is no nonce passed here, so you can cache your pages for eternity as static html and get better page loading time.

    #313824

    In reply to: Emails Problem

    VibeThemes
    Participant

    Most likely you have a plugin installed for sending emails. BuddyPress detects if the wp_mail hook is being used by some plugin and sends in the text version.

    You can however override this. Simply add this PHP code in your child theme – functions.php

    add_filter( ‘bp_email_use_wp_mail’, ‘__return_true’,99999 );

    The above fix is of-course based on the assumption that your plugin is configured for sending HTML emails.

    #313822
    ritz082
    Participant

    I have Multisite with Buddypress on Subsite.
    I want to link author profile from all sites to buddypress author profile on subsite.
    I tried to use this https://gist.github.com/dcavins/94e4989cad997d0553e8e5db37f30b40

    add_filter( ‘author_link’, ‘dc_bp_filter_author_link’, 10, 2 );
    function dc_bp_filter_author_link( $link, $author_id ) {
    return bp_core_get_user_domain( $author_id );
    }

    BUT this needs to have buddypress active on all sites.

    #313821
    nolymityash
    Participant

    Our website is made with bbPress and Buddypress plugins in wordpress. This old plugin “BuddyPress Global Search” used to work well on our site. But this plugin stopped updating and working from 2019; We are looking for a search plugin that also allows sorting of search results.
    I have tried plugins like Relevanssi, Ajax, and GD Power Search, but for some reason, nothing shows up on the site, once I disabled Global Search, the search only yields a Google style list with no sorting options.
    Thank you for any feedback!

    BBPress 2.6.5
    BuddyPress 6.3.0
    Wordpress 5.5.1

    #313801
    judymacmahon
    Participant

    Hi this all started when I couldn’t upload a member profile image – the upload link wouldn’t open.
    I contacted the 3rd party developer -I’ve deleted a plugin that was no longer supported and replaced it with a Buddy Press replacement: https://wordpress.org/plugins/bp-xprofile-custom-field-types/

    This is the error I’m getting and it’s causing an ERROR RENDERING FILE.
    Pagely my server have reinstated access to the dashboard and deactivated the plugin.

    ***here is the error info from them:
    —–
    “Hey Judy,

    The buddypress-xprofile-custom-fields-type plugin was reporting the following php error:

    [14-Sep-2020 07:42:15 UTC] PHP Fatal error: Uncaught Error: [] operator not supported for strings in /dom6056/wp-content/plugins/buddypress-xprofile-custom-fields-type/bp-xprofile-custom-fields-type.php:155
    Stack trace:
    #0 /wordpress-5.5.1/wp-includes/class-wp-hook.php(287): Bxcft_Plugin->admin_init(”)
    #1 /wordpress-5.5.1/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array)
    #2 /wordpress-5.5.1/wp-includes/plugin.php(478): WP_Hook->do_action(Array)
    #3 /wordpress-5.5.1/wp-admin/admin.php(175): do_action(‘admin_init’)
    #4 /wordpress-5.5.1/wp-admin/index.php(10): require_once(‘/wordpress-5.5….’)
    #5 {main}
    thrown in /dom6056/wp-content/plugins/buddypress-xprofile-custom-fields-type/bp-xprofile-custom-fields-type.php on line 155

    I went ahead and commented out line 155 of the plugin file wp-content/plugins/buddypress-xprofile-custom-fields-type/bp-xprofile-custom-fields-type.php

    //$notices[] = __(‘BuddyPress Xprofile Custom Fields Type plugin needs <b>BuddyPress 2.5</b>, please install or upgrade BuddyPress.’, ‘bxcft’);
    This seems to allow the dashboard to load but you will want to get in touch with the plugin developer for any additional information or consider looking into replacing the plugin.”

    ——

    I’d like to attach a screenshot of the relevant plugins but can’t see how to do that???

    Thanks
    Judy

    SEATSforDEPARTURE
    Participant

    Hello guys how are you?
    I’ve noticed the first widget window of the sidebar is not in line with the content of the page itself. Is there a way to make the content or the widget windows down a bit so that the two are in line with each other?
    I am attaching a screenshot to make you understand what I mean. I hope you’ll help me.
    I’ve already contacted my theme support and they told me it has something to do with Buddypress.

    You can check this out at this page:
    https://seatsfordeparture.com/live/

    Bypass the Manteinance by clicking this link https://seatsfordeparture.com?bypass=betatest

    Thank you.

    #313793
    iamthewebb
    Participant

    Hi @reubenclosbanos,
    I think this is the same bug as reported https://buddypress.trac.wordpress.org/ticket/8347
    There is a patch file on that link to correct this which you may wish to try or a new version of BuddyPress (6.3.0) should be released on September 14th that includes this fix.

    #313791
    havealookhere
    Participant

    Because a lot of people search for this i post my sollution here.

    To have some pages of buddypress with a sidebar and some not you can do this! copy page.php into a new file and call it buddypress.php. Then upload it to your childtheme folder.

    Then where the sidebar is called change the get_sidebar() into:

    <?php 
        
        if ( is_page( array( 'spreekkamers', 'forums', 'activiteiten', '0' ) ) ) :
            get_sidebar();
        endif;
    ?>

    In this array you can write the names of the pages you want to have a sidebar shown.

    For the my profile page I used page id 0 because that was the only possibility to get the sidebar on the profile page. This is because its connected to the members page. I did not want a sidebar on the memberspage.

    Then a little of css will make the site look good again.

    In my case it was this css, because it was only about one page:

    body.page-id-3139 div#primary {
        max-width: 100% !important;
        width: 100% !important;
    }

    Thank you vapvarun for pointing me to the right way!!

    Unknown
    Participant

    Some of my users encounter this statement “”There has been a critical error on your site.”, when they create groups. Although when they refresh it and click on their profile the group is created. This is the error found.
    [11-Sep-2020 07:12:01 UTC] PHP Fatal error: Uncaught Error: Class ‘PHPMailer’ not found in /srv/htdocs/wp-content/plugins/buddypress/bp-core/classes/class-bp-phpmailer.php:91
    Stack trace:
    #0 /srv/htdocs/wp-content/plugins/buddypress/bp-core/bp-core-functions.php(3233): BP_PHPMailer->bp_email(Object(BP_Email))
    #1 /srv/htdocs/wp-content/plugins/buddypress/bp-groups/bp-groups-notifications.php(365): bp_send_email(‘groups-invitati…’, 102044344, Array)
    #2 /srv/htdocs/wp-content/plugins/buddypress/bp-groups/classes/class-bp-groups-invitation-manager.php(55): groups_notification_group_invites(Object(BP_Groups_Group), 102044344, 102044348)
    #3 /srv/htdocs/wp-content/plugins/buddypress/bp-core/classes/class-bp-invitation-manager.php(197): BP_Groups_Invitation_Manager->run_send_action(Object(BP_Invitation))
    #4 /srv/htdocs/wp-content/plugins/buddypress/bp-groups/bp-groups-functions.php(1718): BP_Invitation_Manager->send_invitation_by_id(1178)
    #5 /srv/htdocs/wp-content/plugins/buddypress/bp-groups/actions/create.php(139): groups_send_invites(Array)
    #6 /wordpress/core/5.5.1/wp-includes/class-wp-hook.php(287): groups_action_create_group(”)
    #7 /wordpress/core/5.5.1/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array)
    #8 /wordpress/core/5.5.1/wp-includes/plugin.php(478): WP_Hook->do_action(Array)
    #9 /srv/htdocs/wp-content/plugins/buddypress/bp-core/bp-core-dependency.php(353): do_action(‘bp_actions’)
    #10 /wordpress/core/5.5.1/wp-includes/class-wp-hook.php(287): bp_actions(”)
    #11 /wordpress/core/5.5.1/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array)
    #12 /wordpress/core/5.5.1/wp-includes/plugin.php(478): WP_Hook->do_action(Array)
    #13 /srv/htdocs/wp-content/plugins/buddypress/bp-core/bp-core-dependency.php(430): do_action(‘bp_template_red…’)
    #14 /wordpress/core/5.5.1/wp-includes/class-wp-hook.php(287): bp_template_redirect(”)
    #15 /wordpress/core/5.5.1/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array)
    #16 /wordpress/core/5.5.1/wp-includes/plugin.php(478): WP_Hook->do_action(Array)
    #17 /wordpress/core/5.5.1/wp-includes/template-loader.php(13): do_action(‘template_redire…’)
    #18 /wordpress/core/5.5.1/wp-blog-header.php(19): require_once(‘/wordpress/core…’)
    #19 /wordpress/core/5.5.1/index.php(17): require(‘/wordpress/core…’)
    #20 {main}
    thrown in /srv/htdocs/wp-content/plugins/buddypress/bp-core/classes/class-bp-phpmailer.php on line 91

    I hope someone can help me with this. This is a link to my site https://getaprofessor.com/

    #313786
    miminou
    Participant

    Hello
    I’m using BuddyPress in my eLearning website, I’ve installed the BuddyPress integration of LearnPress & Paid Membership Pro, when I asked in their forum, they redirect me to BuddyPress forum

    I have this issues:

    1-Whene I check my messages in BuddyPress account, it’s redirect me to memberships page.
    2-Also I can’t send message to users.

    My website https://am-amine.com/coursdz/

    Best Regards

    bruceleebee
    Participant

    I’m trying to rename everything related to BuddyPress ‘Groups’ into something else like ‘Teams’ (or any other naming convention I want).

    I have it mostly completed, except the group creation step URLs.

    For example:
    /create/step/group-details/ -> /create/step/team-details/
    /create/step/group-settings/ -> /create/step/team-settings/
    etc

    Does anybody know how to change those URLs?

    #313781
    havealookhere
    Participant

    ok, is there an example somewhere about the conditional wrapping???

    And, I place the buddypress.php straight into my childtheme or in childtheme/buddypress/

    thanks for this reply

    #313780
    Varun Dubey
    Participant

    @havealookhere inside the child theme create buddypress.php based on page.php and remove sidebar codes from it to make it full width, you can wrap it with conditional to keep it limited for members directory only.

    #313779
    Mathieu Viet
    Moderator

    Hi @neets1604

    Thanks for your feedback and thanks for using BuddyPress for 3 years. This email issue happens in BuddyPress because some custom code is overriding our PHPMailer class, that’s the reason why we haven’t identified this issue during our beta release period.

    I’d like to remind you it’s important when users have specific configurations that they gives us a hand to identify these cases during the BuddyPress beta release periods: we cannot test all Themes, all plugins extending BuddyPress and all users specific configurations.

    There’s a plugin to make it easier to test our beta releases, I’d advise you to use it on a staging site to contribute to the project.

    Finally, the upgrade that will fix this issue will be available for download next monday.

    Mathieu Viet
    Moderator

    Hi @alexhal

    The 6.3.0 milestone still has issues to fix see: https://buddypress.trac.wordpress.org/query?status=reopened&status=assigned&status=reviewing&status=new&status=accepted&group=status&milestone=6.3.0

    We’ll try to fix them and package the 6.3.0 release early next week, but please understand the Members of the BuddyPress Core Team are volunteers that freely give their time to the BuddyPress open source project and do their best for all BuddyPress users.

    Thanks in advance for your understanding.

    #313774
    havealookhere
    Participant

    Hello,

    After reading I think all of the forum post about this matter till ten years ago the issue I have is driving me nuts.

    I want to have the possibility to remove the sidebar on certain buddypress pages. Especially from the members page.

    So first I went into the page in the wordpress dashboard and switched the setting no sidebar on. When the page is not connected to a buddy press page the sidebar is gone. But, when i connect it to a buddypress page like members then the sidebar is back. I tried several setting, like full width, no sidebar, etc but everytime I make it a buddypress page in the buddypress settings the sidebar is back.

    Then I tried to make a child theme. I did put the buddypress nouveau part in the child theme, copied the members/index.php and members/members-loop.php into the sidebar. I saw this in the buddypress forum off two years ago. Then when editing the files, there is not a call to a sidebar so i cannot remove it.

    The index.php looks like this:

    <?php bp_nouveau_before_members_directory_content(); ?>
    
    	<?php if ( ! bp_nouveau_is_object_nav_in_sidebar() ) : ?>
    
    		<?php bp_get_template_part( 'common/nav/directory-nav' ); ?>
    
    	<?php endif; ?>
    
    	<div class="screen-content">
    
    	<?php bp_get_template_part( 'common/search-and-filters-bar' ); ?>
    
    		<div id="members-dir-list" class="members dir-list" data-bp-list="members">
    			<div id="bp-ajax-loader"><?php bp_nouveau_user_feedback( 'directory-members-loading' ); ?></div>
    		</div><!-- #members-dir-list -->
    
    		<?php bp_nouveau_after_members_directory_content(); ?>
    	</div><!-- // .screen-content -->
    
    	<?php bp_nouveau_after_directory_page(); ?>
    

    the only reference to the sidebar is <?php if ( ! bp_nouveau_is_object_nav_in_sidebar() ) : ?>

    When I delete this it breaks the website.

    Now I am stuck on this. I think it is not that diffucult but some way some how i cannot find the way to remove the side bar.

    So please… please can someone point me in the right direction?? I use the Astra theme!!

    #313772
    shanebp
    Moderator

    These are the forums for BuddyPress, not BuddyBoss.
    Please contact BuddyBoss with questions about their products.

    #313770
    paulmtilley
    Participant

    Hi. In my feed page I just get “Loading community updates. Please wait.” and nothing else. I have loaded ‘fake’ activity but its just not showing. I have tried this after turning off all non-buddypress plugins and still the same . I have also given it a go in Twenty Twenty.

    I’m using:

    WP Version 5.5.1
    BuddyBoss ChildVersion: 1.0.0
    BuddyBoss Platform Version 1.5.0
    BuddyBoss Platform Pro Version 1.0.4

    #313769
    Tim
    Participant

    A new member joined in a Group. I replied to this welcoming her. She attempted to reply and received an error message.

    The message appears below the Post button and simply states: There was an error posting your reply. Please try again.

    She has tried multiple times and receives the same message. I have tried to recreate the error and cannot. She did send me a screenshot if it is needed.

    Any ideas what is causing the problem?

    BuddyPress Version 6.2.0
    WordPress Version 5.5.1

    #313763
    FTLRalph
    Participant

    Hey all, I’m trying to start the process of redesigning an old Buddypress installation using the legacy theme.

    I want to update to bp-noveau, so I’ve dumped the /bp-templates/bp-noveau/ files into my theme into a /buddypress/ folder and all is working fine

    However, it is extremely barebones. The CSS is, well…oof.

    Does anyone know of a “very simple” (free) bp-noveau theme I can use and build off of? Basically something that already has a very solid design base, but not crazy complex where editing it is a massive hassle.

    #313747
    ardityad
    Participant

    Hi buddypress,
    I just install new theme and theme have buddypress on it. i just realize there is issue when user register.
    User can receive email contain link and key but when actiavtion link click nothing happen user stil on pending.

    Can you help me with this problem ?

    #313746
    judymacmahon
    Participant

    Hello
    I’m using 2.6.0 BuddyPress and 5.5.1 WordPress
    I CAN NOT upload profile photos – extended profile.
    The EDIT PROFILE PHOTO link will not open.

    Code looks like this:
    <
    a href=”#TB_inline?width=800pxpx&inlineId=bp-members-avatar-editor&width=641&height=526″>Edit Profile Photo<
    /a>

    Urgent assistance appreciated.
    Judy

    #313743
    Ryan Bickett
    Participant

    Hello Mirko. Unfortunately, I don’t have an answer to your question. However, I wanted to reach out because I am looking into adding video conferencing functionality to a site I am working on. I was looking at using BuddyMeet with BuddyPress as well. So, I am curious if you were able to get this sorted out? I am also curious about your feedback on the use of BuddyMeet? Is it working for you? Are there any other video conferencing plugins you’ve looked into? Thanks in advance.

Viewing 25 results - 3,601 through 3,625 (of 73,173 total)
Skip to toolbar