Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,051 through 8,075 (of 69,044 total)
  • Author
    Search Results
  • #265669
    danbp
    Participant

    Please don’t double post. Closing this one as duplicate.

    #265667
    danbp
    Participant
    #265655

    In reply to: Disable Alphabetical

    Brajesh Singh
    Participant

    Do you want to remove the “Alphabetical” in the Order By dropdown?

    If you are using a BuddyPress specific theme, please look into yourtheme/buddypress/members/index.php and you will see the code there for this option. Just remove that.

    if you are not using a BuddyPress specific theme or your theme does not have this file, you can copy index.php file from plugins/buddypress/bp-templates/bp-legacy/buddypress/members directory and put it in yourtheme/buddypress/members directory.

    then you can modify the file to remove the dropdown option.

    Hope that helps.

    Regards
    Brajesh

    #265648

    In reply to: Membership

    Henry Wright
    Moderator

    You’ll probably need a plugin for that, or even custom code a solution because, by default, BuddyPress doesn’t give members the opportunity to create new pages.

    #265643
    lalitavalon
    Participant

    Hi @Henry Wright,

    I use the buddypress in my website and select the page for registration in setting of the buddypress. By default it is taking the default page.php layout like there is side bar my default page.php so i want to chnage the default page to my template and add disffrent page side at registration page.

    #265638
    shemakeswebsites
    Participant

    I found the solution. I tested the script I had tried before…but this time it worked. If anyone else is interested, see the script at the end of this post:

    https://buddypress.org/support/topic/username-vs-display-name/

    #265629

    In reply to: Ephemeral Messages

    Henry Wright
    Moderator

    You’d need to build a custom solution because I don’t think there’s anything available, at least for BuddyPress.

    Take a look at the WordPress Transients API. That might help.

    https://codex.wordpress.org/Transients_API

    #265623

    In reply to: Ephemeral Messages

    Henry Wright
    Moderator

    Private messaging in BuddyPress is persistent (saved to the db). There is also “flash” messages but these are stored as a cookie and are removed after the page request.

    #265619
    EMRETHEAVIATOR
    Participant

    The problem is solved. It was because of an old code I used to hide admin. Anyone needs to hide admin can use this link.

    #265618
    EMRETHEAVIATOR
    Participant

    Thank you very much. The problem is solved. Anyone has the same problem can use this link.

    #265614
    Henry Wright
    Moderator

    There are a few to choose from. I haven’t tried lately myself but these seem to be popular:

    lalitavalon
    Participant

    I useed the same website with diffrent link on local host it is working fine there is no issue.
    But I actaully try to set up the same website again on local differnt link and try to install the buddypress plugin getting errors and not able to uninstall.
    Still if you want some information please find below:

    Theme -custom theme
    php version 7.0.9
    Install type single
    List of plugins:

    Advanced Custom Fields
    Advanced Custom Fields: Date and Time Picker
    Advanced Custom Fields: Repeater Field
    All In One SEO Pack

    Breadcrumb NavXT

    BuddyPress
    Captcha

    Contact Form 7
    Dephue Data Design Hide Update Notifications – Developer Edition
    Limit Login Attempts
    Lockdown WP Admin
    Login With Ajax
    Restrict Categories
    Visualizer: Charts and Graphs
    WP-Mail-SMTP
    WPFront User Role Editor

    Host Type: Local

    danbp
    Participant

    Hi,

    please provide more details about your install. For now it is just impossible to help.

    Used theme ?
    Php version ?
    Install type ? (single, network)
    List of plugins ?
    Hoster and plan, server type ?

    You can also read here before posting.

    Thank you for comprehension.

    #265605
    Anil Sharma
    Participant

    you Can also check previous topic on this

    how to add new members to groups automatically?

    zsauce
    Participant

    This is the bar and menu I am trying to get rid of:
    WordPress Admin Bar

    While this is the bar I’m trying to maintain, but all of these options disappear when I hide the WordPress Admin Bar above:
    BuddyPress Admin Bar

    #265592
    Kriss Kellino
    Participant

    Hi guys

    I have just had a user try to post a picture and a link together… yes I am using Activity plus plugin.

    It came up with Security check requiried… now not sure what is causing it. Akismet approved the post.

    So is it the Activity plus plugin or BuddyPress?

    I am using the latest versions of everything.

    Kriss 🙂

    http://www.krissharmsworth.rocks/blog

    #265588
    lawlyet
    Participant

    This error is showing up to many websites. A google search for “PHP Warning: Creating default object from empty value in /wp-content/plugins/buddypress/bp-groups/classes/class-bp-groups-member.php on line 1170” returns almost 5500 results…

    And if you search for “PHP Warning: Creating default object from empty value in class-bp-groups-member.php on line” (removing line number and the path of the file from the results, you get some something like 337000 results.

    My site is also showing this message, and I already removed all plugins and themes, running the latest version of WP, BP and BBPress with Twenty Seventeen template.

    I guess it may be a problem with php, or maybe with chrome and chromium… Maybe it is time to start working on this issue.

    I already added the following in my functions.php:

    /* Remove errors if any */
    error_reporting(E_ERROR | E_PARSE);
    /* End remove Errors */

    it’s not the ideal. there is also the better option to add some lines in your wp-config.php, to do a proper debug and get it in a log file, instead of showing it in the site.

    #265586

    In reply to: BuddyPress Groups

    shanebp
    Moderator

    The widget’s ajax call does not check to see who is viewing it.
    So only public groups will appear; hidden & private groups will not appear even though you are a member.
    You could write your own widget that uses the logged-in member’s id.
    Use the group widget code as a reference:
    buddypress\bp-groups\bp-groups-widgets.php

    #265581
    joaomluz
    Participant

    Thanks for your help.

    I add this filter but i have also to change bp_send_email function in file /buddypress/bp-core/bp-core-functions.php. then it works.

    Before:

    $must_use_wpmail = apply_filters( 'bp_email_use_wp_mail', $wp_html_emails || ! $is_default_wpmail );
    
    	if ( $must_use_wpmail ) {
    		$to = $email->get( 'to' );
    
    		return wp_mail(
    			array_shift( $to )->get_address(),
    			$email->get( 'subject', 'replace-tokens' ),
    			$email->get( 'content_plaintext', 'replace-tokens' )
    		);
    	}

    After:

    $must_use_wpmail = apply_filters( 'bp_email_use_wp_mail', $wp_html_emails || ! $is_default_wpmail );
    
    	if ( $must_use_wpmail ) {
    		$to = $email->get( 'to' );
    
    		return wp_mail(
    			array_shift( $to )->get_address(),
    			$email->get( 'subject', 'replace-tokens' ),
    			$email->get_template( 'add-content' )
    		);
    	}

    Is there any way to hook/override this “$email->get_template( ‘add-content’ )” keeping the plugin core unchanged?

    #265572
    Henry Wright
    Moderator

    That page is made up of template parts but you would start by editing your-child-theme/buddypress/members/single/index.php. If the file doesn’t exist you will need to create it. For more information check out the Template Hierarchy article

    Ref https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/

    jeffacubed
    Participant

    Hi @arbolife any chance you even vaguely remember what you did to get new user activation email being sent out when using WPML + BuddyPress? Like you, everything works 100% correctly on the ‘English’ side when new users register, requests membership for a private BP group, logs-in, etc – BUT if a user registers on the french registration page (fr/register/) they never get any emails (I they are foever listed as “pending” in the user area). I’ve also noticed that no emails (outgoing) get triggered if an existing user switches to the /fr/ side & tries to join a private BuddyPress group. Trying to access the /fr/wp-login.php page (or the password reset) from the /fr/ side will also trigger a 404 page. So, like you mentioned, it’s a setting “somewhere” in WPML to resolve these (many) anomalies, but for whatever reason, I can’t see to find the resolution!

    My test setup:

    WP: 3.7.4
    BP: 2.8.2
    WPML: 3.7.0
    BuddyPress WPML Plugin: 1.5.5.1

    -Jeff

    #265558
    mattbelshaw
    Participant

    I have now solved this issue.

    I had added code to the bp-custom.php which attempted to hide certain tabs from other users, this code for some reason was forcing buddypress to hide the entire member profile rather than just specific tabs.

    #265546
    Henry Wright
    Moderator

    I deleted my BuddyPress

    There’s 2 parts to BuddyPress. There’s the database and then there’s the files and folders.

    If you deleted the database then you’ll need to use a backup. If you’ve deleted the BuddyPress files and folders only, then you can just upload them and everything should work again.

    #265544
    jls2017
    Participant

    FYI, I had to create a new profile just to post this so that it could be seen. For some reason my last post was invisible to everyone unless I was logged into my profile and using this link:

    https://buddypress.org/support/topic/directories/#post-265538

    Even then it didn’t appear in my topic history. Was it hitting some sort of moderation filter? Didn’t say that it was and there wasn’t 3 links in my post? Or does that profile of mine not function correctly for some reason?

    Thanks mods for help with that…

    #265525
    jayney54
    Participant

    Lalaloo you can turn notifications off for all users for specific BuddyPress functions in the “email” section. Just select the particular notification and un-select the “situation” and save. But then no-one will get any of those notifications..

Viewing 25 results - 8,051 through 8,075 (of 69,044 total)
Skip to toolbar