Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,276 through 17,300 (of 69,106 total)
  • Author
    Search Results
  • brinkingyellows
    Participant

    Alright, finally after a couple of months of doing some serious investigating, it turns out that a plugin called Members Directory was causing the issue. After fully removing that plugin and then updating to this latest 1.9.2 version of Buddypress everything finally worked. It was the order of how I had to go about removing the plugin first then applying the update to Buddypress that was needed. Not sure why but I’m up and going now.

    Thanks for all those that attempted to help out and I’ll keep you posted if anything else pops up. Have a great weekend everyone!

    #180092
    siteshack
    Participant

    Hi

    if you look here https://buddypress.org/community/members/siteshack/forums/

    you will see three items dated 1 year 3 months ago. These were submitted at different times. If you look at the items they have the correct date. The issue is that these items appear in the full list as old items and not new

    Cheers
    Danny

    #180081
    neerajkumar2020
    Participant

    Hi Henry,

    I have checked with plugin:
    buddypress-group-email-subscription/bp-activity-subscription-digest.php
    there is conditional checked with database
    i.e
    $user_subscriptions = $wpdb->get_results( $wpdb->prepare( “SELECT user_id, meta_value FROM $wpdb->usermeta WHERE meta_key = ‘ass_digest_items’ AND meta_value != ”” ) );

    Please help me by explaining , in which condition meta_value is updated for meta_key = ‘ass_digest_items’

    Thank you in advance.

    #180067
    Donna111
    Participant

    HI there
    I totally agree with arronlee.It would be easier to download profile and then save it as PDF files using some PDF generating toolkits.But i have never tried to download PDF files in Buddypress.Is there any program which supports to work with Buddy?

    #180058
    shanebp
    Moderator

    >…not used on the profile group tabs when the user is editing their profile

    Try using the ‘xprofile_filter_profile_group_tabs’ filter hook in
    bp_profile_group_tabs() in
    \buddypress\bp-xprofile\bp-xprofile-template.php

    #180057
    Doremdou
    Participant

    Hello, this is buddypress support forums here not bbpress ones 🙂
    You should ask your questions here : https://bbpress.org/forums/ 🙂

    dainismichel
    Participant

    if i remember correctly, some plugin fixed it. but i can’t remember what it was called. also, i’m pretty sure i asked the initial question several years ago — not 10 months ago.

    let us know how/if you resolve the issue. i haven’t checked on this issue in quite a while and honestly can’t remember how the solution/workaround i have on my 2 buddypress sites.

    #180000
    mairaj
    Participant

    Okay, so yes the website is working however new registrations are not going through. When I click ‘Complete Sign Up’ the registration page refreshes and comes back blank just with the heading ‘Create an Account’ no registration form on the page.

    No activation email sent, tried all basic possibilities, deactivated all plugins, just buddypress is active. Cannot do any registrations.

    Please help

    #179989
    Henry Wright
    Moderator

    You have to create it yourself. Take a look at this article which tells you about the new template hierarchy:

    Template Hierarchy

    #179975

    In reply to: Recommended Posts

    joshwinkles
    Participant

    Yes, this is exactly what is happening. I added info to the ticket. Hate it kind of puts my questions on hold since as a newbie to BuddyPress I tend to have them often.

    #179974

    In reply to: Recommended Posts

    Henry Wright
    Moderator

    Does this sound like the same problem?

    https://buddypress.trac.wordpress.org/ticket/5375

    If so then perhaps add what you’re experiencing to that ticket.

    #179965
    wp_kouhai
    Participant

    I have found and corrected the issue.

    function buddypress_redirect_if_no_avatar($redirect_url,$request_url,$user) {
    
      $avatar = bp_core_fetch_avatar( array( 'item_id' => $user->ID, 'no_grav' => true, 'html'=>false) );
    
      $pos = strpos($avatar, 'mystery-man');
      if ($pos === false) { return "/";}
      else {
        $redirect_url = bp_core_get_user_domain($user->ID)."/profile/change-avatar/";
        return $redirect_url;
      }
    
    }
    
    add_filter("login_redirect","buddypress_redirect_if_no_avatar",100,3);
    #179956
    Missy Oveson
    Participant

    This is probably a really quick and dirty way to do it but I just pulled the loop from the loops file in the original and removed the entry header and footer part. It makes my buddypress page look like

    <?php
    /**
     * Genesis Framework.
     *
     * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
     * Please do all modifications in the form of a child theme.
     *
     * @package Genesis\Templates
     * @author  StudioPress
     * @license GPL-2.0+
     * @link    http://my.studiopress.com/themes/genesis/
     */
    
    //* This file handles BuddyPress pages
    
    get_header();
    
    	if ( have_posts() ) : while ( have_posts() ) : the_post();
    
    			do_action( 'genesis_before_entry' );
    
    			printf( '<article %s>', genesis_attr( 'entry' ) );
    
    				do_action( 'genesis_before_entry_content' );
    				printf( '<div %s>', genesis_attr( 'entry-content' ) );
    					do_action( 'genesis_entry_content' );
    				echo '</div>'; //* end .entry-content
    				do_action( 'genesis_after_entry_content' );
    
    			echo '</article>';
    
    			do_action( 'genesis_after_entry' );
    
    		endwhile; //* end of one post
    		do_action( 'genesis_after_endwhile' );
    
    	else : //* if no posts exist
    		do_action( 'genesis_loop_else' );
    	endif; //* end loop
    
    get_footer();
    #179953
    wellrootedmedia
    Participant

    Hey 4yrs and 8 months later I’m finding myself looking for this solution although this link is 404’ing “https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-profile-data-loop-bp_has_profile/&#8221;. Is this still something supported?

    Thx, wrm

    #179952
    virtualgeorge
    Participant

    I just had to delete and re-create my “register” page, still used the same name/slug but when I saved the new page for “register” in the buddypress pages admin it then used my buddypress reg page as I wanted.

    #179924
    Projekt-42
    Participant

    Problem solved.

    Anleitung:

    Im Ordner /wp-content/plugins/ die Datei bp-custom.php anlegen.

    Die bp-custom.php Datei öffnen und folgendes einfügen:

    
    <?php
    /**
    * Disables BuddyPress' registration process and fallsback to WordPress' one.
    */
    function my_disable_bp_registration() {
    remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
    remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' );
    
      add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page");
        function firmasite_redirect_bp_signup_page($page ){
            return bp_get_root_domain() . '/wp-signup.php'; 
        }
    ?>

    Datei speichern. Fertig!

    #179921
    gouessej
    Participant

    Hi

    Actually, WordPress isn’t designed to become a decentralized social network even though BuddyPress is quite good. Anyway, this article written by Jeff Sayre is a great source of inspiration:
    http://jeffsayre.com/2010/02/24/a-flock-of-twitters-decentralized-semantic-microblogging/

    #179920
    Henry Wright
    Moderator

    It isn’t quite ready yet. You can follow the development progress on the GitHub repo:

    https://github.com/karmatosed/buddypress-templates

    #179911
    edsurridge
    Participant

    I’ve been trying to find code that shall present the bp members list (on a charity site) alphabetically listed rather than by most recently active. Not tried this before but from what read I make a child ‘theme’? with the modified code on a blank note pad page then firezilla it to dreamhost.
    Found this but not sure that these people are trying to achieve the same.https://buddypress.org/support/topic/how-to-order-members-list-alphabetically-by-default/
    Any assistance much appreciated. ed

    #179905

    In reply to: unusual event

    carlsandburg
    Participant

    Update.. i deleted the page http://cchca.stevelescure.net/cch-civic-association/leadership/publications/ from my site that was showing up randomly when i chose Profile/View from the BuddyPress menu. Now it works fine.

    really weird. If anybody knows why this might be happening i’d be interested.

    thanks

    #179902
    colabsadmin
    Participant
    #179899
    jakewho
    Participant

    The fatal error is no longer generated in bbPress 2.5.1, so it looks like something new was introduced in bbPress 2.5.2.

    Currently on my staging site I am running bbPress 2.5.1 and buddyPress 1.9.2, but unfortunately even though errors aren’t being generated anymore with this configuration, not all notifications are being displayed either. It looks like friend request notifications are working correctly, but user-to-user message notifications are not working. In addition, I am still getting “blank” notifications from the forum (even though I’m not seeing any fatal errors).

    Any thoughts about next steps?

    Thanks much

    #179892

    In reply to: 3rd Sized Avatar

    darqpony
    Participant

    LOL… yes I have buddypress installed.

    Pierre Clark
    Participant

    Warning: Missing argument 2 for wpdb::prepare(), called in /home/ofjvzrzz/public_html/enetnetwork/wp-content/plugins/buddypress/bp-core/bp-core-functions.php on line 143 and defined in /home/ofjvzrzz/public_html/enetnetwork/wp-includes/wp-db.php on line 992

    Here is another screen I get on another of the sites on my Vodahost hosting service where I upgraded to WordPress 3.8 from the Fantastico application. When I try to log in, I get this message:

    Warning: Missing argument 2 for wpdb::prepare(), called in /home/ofjvzrzz/public_html/enetnetwork/wp-content/plugins/buddypress/bp-core/bp-core-functions.php on line 1003 and defined in /home/ofjvzrzz/public_html/enetnetwork/wp-includes/wp-db.php on line 992

    Warning: Cannot modify header information – headers already sent by (output started at /home/ofjvzrzz/public_html/enetnetwork/wp-includes/wp-db.php:992) in /home/ofjvzrzz/public_html/enetnetwork/wp-login.php on line 415

    Warning: Cannot modify header information – headers already sent by (output started at /home/ofjvzrzz/public_html/enetnetwork/wp-includes/wp-db.php:992) in /home/ofjvzrzz/public_html/enetnetwork/wp-login.php on line 427
    Entrepreneur World Network

    Username

    Password

    Remember Me

    Lost your password?
    ← Back to Entrepreneur World Network

    All of these sites are responding in the same way to the upgrade. I need help to fix the error that is causing this error message.

    Pierre Clark
    Participant

    Here is the error message I get when I try to log into the site:

    Warning: Missing argument 2 for wpdb::prepare(), called in /home/ofjvzrzz/public_html/faithtechnetwork/wp-content/plugins/buddypress/bp-core/bp-core-functions.php on line 176 and defined in /home/ofjvzrzz/public_html/faithtechnetwork/wp-includes/wp-db.php on line 992

    Warning: Missing argument 2 for wpdb::prepare(), called in /home/ofjvzrzz/public_html/faithtechnetwork/wp-content/plugins/buddypress/bp-core/bp-core-options.php on line 293 and defined in /home/ofjvzrzz/public_html/faithtechnetwork/wp-includes/wp-db.php on line 992

    Warning: Cannot modify header information – headers already sent by (output started at /home/ofjvzrzz/public_html/faithtechnetwork/wp-includes/wp-db.php:992) in /home/ofjvzrzz/public_html/faithtechnetwork/wp-includes/pluggable.php on line 896

Viewing 25 results - 17,276 through 17,300 (of 69,106 total)
Skip to toolbar