Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,926 through 18,950 (of 68,969 total)
  • Author
    Search Results
  • #171742

    In reply to: buddypress vs bbpress

    Hugo Ashmore
    Participant

    Buddypress uses bbPress to provide it’s forums for groups and is not a forum app it’s self, it does not, or at least as of V 1.7 have internal forums which used to be a stripped down version of bbPress.

    #171737
    dikshav@
    Participant

    Thanks @mercime, I shall surely ask at the theme forum, but I also wanted to know about how to work with Buddy Press, the initials to build up a Social kind of site. I shall go through the tutorials, and then again come up here , if have any issues.
    Well, I thought I would get a reply to how to start with buddypress.

    #171736

    In reply to: hide members

    Famous
    Participant

    Looking for guidance on the below:

    So I am trying my best to make something happen here:
    themes/my-child-theme/buddypress/members/index.php

    When I make changes to the above page, nothing happens, any ideas? Am I on the wrong page?

    How can I hide members yet have them connect?

    Thanks

    #171732

    In reply to: 1 Click Installations

    bvirkus
    Participant

    What if we have an existing website we are looking to incorporate Buddypress? Hence, WordPress was already loaded via the 1 Click App when we initially set the site up. The url we are referencing is http://findthecapital.com.

    #171731
    Vova Feldman
    Participant

    Guys, we are proud to announce that the new Rating-Widget plugin release supports BuddyPress & bbPress ratings. And the Premium version even support aggregated user ratings which is calculated based on all user’s activities.

    #171728
    r-a-y
    Keymaster

    Hmm, I think xprofile_get_field_data() might need to be altered in order to add logged-in visibility level checks.

    Can you create a ticket at https://trac.buddypress.org/newticket so someone can take a look at this later on?

    #171727

    In reply to: Email Activation

    asieger
    Participant

    Hi @mercime,

    I received activation email when i installed wp-client earlier, but i don’t know why i don’t get the activation mail for buddypress. The Website is hosted with Supremecluster in the US.

    Please, could it be from my host or probably from wrong settings?

    Thanks
    -Samuel

    #171726
    r-a-y
    Keymaster

    I think the AJAX code in BuddyPress might be interfering with your link.

    Try adding the “no-ajax” class to your custom link and see if it works:

    <<li id="members-my"><a class="no-ajax" href="/vereinfaches/vereinskollegen"><?php printf( __( 'Meine Vereinskollegen' ) ); ?></a></li>

    Hugo Ashmore
    Participant

    If you think you have found a bug and can reproduce and give steps to reproduce it would help if you could create a Trac ticket.

    #171715
    CraigM1970
    Participant

    Just a bump. Anybody?

    I think this would really advance Buddypress templating if it could be figured out.

    It would give a choice of 2 different types of menu for template developers, enabling limitless possibilities.

    #171714

    In reply to: Login Redirect

    Ben Hansen
    Participant

    as far as i know there is no buddypress login page, the wordpress login page is what buddypress uses unless you construct your own.

    #171711
    @mercime
    Participant

    ibuddy theme is a WordPress theme which supports BuddyPress. Therefore, you can use the usual WP template tags and functions to generate login code as well as recent blog posts. For more assistance, you can post at theme author’s support forums at https://wordpress.org/support/theme/ibuddy

    Henry
    Member

    That’s what I thought it was for. Thanks for verifying @mercime – I was half thinking such capability settings would be performed via the backend dashboard – but of course this is BuddyPress – for front end stuff! ๐Ÿ™‚

    #171709

    In reply to: Email Activation

    @mercime
    Participant

    Can you receive an activation mail if you deactivate BuddyPress? Where are you hosted? Have you checked out possible solutions at https://codex.buddypress.org/troubleshooting/frequently-asked-questions/ ?

    #171707

    In reply to: Email Activation

    @mercime
    Participant

    closing this topic in favor of same at https://buddypress.org/support/topic/email-activation-2/

    #171692
    Hugo Ashmore
    Participant

    @debu89

    Did you not read this comment made by mercime

    There are a variety of reasons why registration wonโ€™t work for some installations with different/similar configurations. Help us help you by creating a new topic of your own and providing us more information about your installations โ€“ single WP/WPMS, theme used, plugins used, etc. or did you check if registration process is working in your WP install if BuddyPress is deactivated?

    Please start a new thread and be sure to provide the detail asked for otherwise it’s really not possible to help much at all.

    Closing this thread.

    #171687
    debu89
    Participant

    I am facing the same problem…Please anyone solve this problem….

    debu89
    Participant

    I am facing the same problem.Users can’t register .When they submit the registration page it reloads with the password field empty….Please check the issue….

    #171683
    totoff
    Participant

    hi,
    finally i found a plugin to manage it:
    https://wordpress.org/plugins/buddypress-auto-group-join/screenshots/

    thanks,

    #171677
    Eric J T
    Participant

    Sorry I didn’t include the code for that. Yes, it is in the wp functions.php file, but it is relevant to bp theme. Here is the full function that line 100 is found in. Line 100 is the third to last, which starts with “add action”.

    /**
     * Sets up theme defaults and registers support for various WordPress and BuddyPress features.
     *
     * Note that this function is hooked into the after_setup_theme hook, which runs
     * before the init hook. The init hook is too late for some features, such as indicating
     * support post thumbnails.
     *
     * To override bp_dtheme_setup() in a child theme, add your own bp_dtheme_setup to your child theme's
     * functions.php file.
     *
     * @global BuddyPress $bp The one true BuddyPress instance
     * @since BuddyPress (1.5)
     */
    function bp_dtheme_setup() {
    
    	// Load the AJAX functions for the theme
    	require( get_template_directory() . '/_inc/ajax.php' );
    
    	// This theme styles the visual editor with editor-style.css to match the theme style.
    	add_editor_style();
    
    	// This theme comes with all the BuddyPress goodies
    	add_theme_support( 'buddypress' );
    
    	// This theme uses post thumbnails
    	add_theme_support( 'post-thumbnails' );
    
    	// Add default posts and comments RSS feed links to head
    	add_theme_support( 'automatic-feed-links' );
    
    	if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
    		// Register buttons for the relevant component templates
    		// Friends button
    		if ( bp_is_active( 'friends' ) )
    			add_action( 'bp_member_header_actions',    'bp_add_friend_button',           5 );
    
    		// Activity button
    		if ( bp_is_active( 'activity' ) && bp_activity_do_mentions() )
    			add_action( 'bp_member_header_actions',    'bp_send_public_message_button',  20 );
    
    		// Messages button
    		if ( bp_is_active( 'messages' ) )
    			add_action( 'bp_member_header_actions',    'bp_send_private_message_button', 20 );
    
    		// Group buttons
    		if ( bp_is_active( 'groups' ) ) {
    			add_action( 'bp_group_header_actions',     'bp_group_join_button',           5 );
    			add_action( 'bp_directory_groups_actions', 'bp_group_join_button' );
    		}
    
    		// Blog button
    		if ( bp_is_active( 'blogs' ) )
    			add_action( 'bp_directory_blogs_actions',  'bp_blogs_visit_blog_button' );
    	}
    }
    add_action( 'after_setup_theme', 'bp_dtheme_setup' );
    endif;
    
    if ( !function_exists( 'bp_dtheme_enqueue_scripts' ) ) :
    

    In the first install the failed bp had been installed and working for a few days. It suddenly gave errors when I edited a css color code on line 1211 in this file and uploaded it to the server by ftp. Yeah, I know you might say I made a mistake, but I know I did it correctly. And they you might say the file got corrupted in transfer, except that the second install on godaddy had no such changes or transfers and in short order – less than an hour of use with no other plugins or style changes – gave the same final error for line 100 when I changed my public name in the buddypress members listing, at which point neither the front nor back ends were accessible.

    Looking forward to your insights.

    Paul Wong-Gibbs
    Keymaster

    Closing as topic was 12 months old prior to your reply.

    #171673
    Paul Wong-Gibbs
    Keymaster

    This isn’t really a BuddyPress specific problem. You’ve activated a plugin or theme that doesn’t work, and it’s causing these errors.

    Reinstall WordPress, then BuddyPress. Use a default WordPress theme. Everything will be fine. Reactive plugins one-by-one until the error comes back. You’ve figured out what plugin(s) are misbehaving, so deactivate and delete them. Then try switching back to your theme, and seeing if it all still works.

    Hint: from your logs, the “BP Group Extras” plugin is causing problems, so get rid of that.

    #171672

    In reply to: Problem in buddypress

    Paul Wong-Gibbs
    Keymaster

    BP Courseware hasn’t been updated in almost a year, and I’m pretty sure that the plugin’s developer isn’t working on the WP plugin any more. The error’s probably caused by some forum changes that happened in BP at least a year ago.

    #171669
    catwomanbadkitty
    Participant

    The Mystery Man image is selected in Settings > Discussion.
    What is happening is that Buddypress is assigning a new user id # to new members but the folder for that user id # still exists so they are inheriting an old image avatar. When they go to upload their avatar for the first time the old deleted profile image appears instead of the Mystery Man image.
    I suppose a quick fix is to FTP into the wp-content/uploads/avatars folder and delete out any of the deleted user folders so that this doesn’t happen.

    I would think that Buddypress would delete these old avatar image folders when users or admin decide to delete a profile. When plugins are deleted the folders are deleted from the server so I am not sure why the avatar files should be any different.

    jchambo
    Participant

    Nevermind, I figured it out!

    I created a buddypress.php file AND a bbpress.php file and uploaded them to my theme directory.

    I created these files as copies from my page-template-full-width.php file.

    Thank you so much for the help!

Viewing 25 results - 18,926 through 18,950 (of 68,969 total)
Skip to toolbar