Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,801 through 17,825 (of 69,106 total)
  • Author
    Search Results
  • #177110
    jacobgus
    Participant

    Okay i made it to where anyone can register now but when i click on the “The following active buddypress componets do not have associated wordpress pages:Activate, Register” it takes me to the pages setting in the BuddyPress plugin but when i click on the register and activate dropdowns there are not pages for register or activate. Do i just need to make blank pages for them or what?

    #177108

    You can adjust colors in your active theme’s style.css file. You will need to know some CSS probably. However, it is best to use a child theme so that when you update your theme, the style changes will not get overwritten. Not sure if you already have one in place, but here’s some more info about that: https://codex.buddypress.org/themes/building-a-buddypress-child-theme/

    #177107

    Also, you’ll want to assign a page for your registration page- see this codex article for more details: https://codex.buddypress.org/getting-started/register-and-activation-pages/

    #177106

    Do you have pretty permalinks set? Check out this codex article for more info: https://codex.buddypress.org/getting-started/troubleshooting/navigation-links-return-404-errors/

    aboudard
    Participant

    Ok, sorry, I didn’t read the whole topic !

    Here is the solution for those who still have this double display on their notification TAB :

    – Check that you do have Buddypress 1.9.1
    – Seek in your child theme the file : /members/single/home.php
    – Copy this code in it (say line 70 or close, you will see the same kind of code) :

    elseif ( bp_is_user_notifications() ) : 
     	locate_template( array( 'members/single/notifications.php' ), true ); 
     

    It does work, whatever your /settings/notification.php is customized.
    Enjoy.

    Alain

    aboudard
    Participant

    Hello !
    Exact same problem on my buddypress 🙁

    BP : 1.9.1
    WP : 3.8

    Prachisharma
    Participant

    @shanebp

    I am following your answer for the same but child theme files is not working.

    I made changes in buddypress/bp-groups/bp-groups-widget.php.
    And my child theme file structure is : child-theme-name/buddypress/bp-groups/bp-groups-widget.php.

    Need help.

    Many thanks

    #177072

    In reply to: Gravatars not working

    Ben Hansen
    Participant
    #177069

    In reply to: Gravatars not working

    Marcella
    Participant

    Gravatars (only mystery man) are now working on a live site.

    Seems like their are a lot of bugs with BuddyPress. Where can I go to log them?

    #177065
    Ben Hansen
    Participant

    so only wordpress, buddypress and 2012? if that’s the case i would still try 2013 and 2014 first but at that point i would be seeing if it was a server side issue by trying the same scenario on another server.

    #177064
    Marcella
    Participant

    I have no other plugins other that BuddyPress.

    #177062
    Marcella
    Participant

    It’s no longer working. Another clean install of WordPress and BuddyPress.

    Any ideas?

    2 members created, administrator (members were not showing upon creation) and another test account. After login, still not showing.

    #177050
    stoi2m1
    Participant

    Thanks for the article although it didnt have my answer it did help push me in a decent direction.

    I found that because my $item_template was already filled with the current pages data I had to compare the posted page to the current page and clear the variable if posted page was different then the current. Then my args would be evaluated and the query would be ran. Im sure this has to do with something with the skeleton custom component being set up a little different then the buddypress core components. Ive looked and compared and now that I have my queries working Im not really interested in why they are different.

    #177048
    shanebp
    Moderator

    I would think that there are several places where a link to the BP profile would appear.

    To handle them all, including the case you state, try using the filter hook in
    function bp_loggedin_user_domain()

    return apply_filters( 'bp_loggedin_user_domain', isset( $bp->loggedin_user->domain ) ? $bp->loggedin_user->domain : '' );
    

    found in
    buddypress\bp-members\bp-members-template.php

    #177047
    jewbi
    Participant

    where to set the message of buddypress? what are the variable?

    need some help please

    #177046
    BroadRippleInc
    Participant

    I am having this problem too, on multiple sites, with different themes. I have tested changing to twentyfourteen, disabling plugins, nothing is working.

    The pages of Buddypress that are redirecting to 404 pages are Notifications, Messages, and Profile, maybe some others.

    Groups, Members, and Activity work fine.

    My htaccess has the same settings as a site that completely works.

    Any help would be appreciated.

    #177044
    shanebp
    Moderator

    Use something like this:
    https://wordpress.org/plugins/buddypress-profile-progression/

    Omit the visual and add the member to your admin display and / or send an email when ‘points == x’

    Ben Hansen
    Participant

    admin i believe for all buddypress backend options.

    BroadRippleInc
    Participant

    I am also buddypress 1.9.1 and still having this problem on multiple sites.

    On one site, Artisteer Themes don’t seem to support Notifications, Messages, Profile, although I may need to do some playing around to see if that is on all Artisteer themes.

    Notifications are definitely displaying wrong on the Custom Community Theme.

    #177027

    In reply to: Change TextBox Size

    n1ck
    Participant

    Can you show me where i should add this?

    
    
    
    /**
     * BuddyPress Login Widget.
     *
     * @since BuddyPress (1.9.0)
     */
    class BP_Core_Login_Widget extends WP_Widget {
    
    	/**
    	 * Constructor method.
    	 */
    	public function __construct() {
    		parent::__construct(
    			false,
    			_x( '(BuddyPress) Log In', 'Title of the login widget', 'buddypress' ),
    			array(
    				'description' => __( 'Show a Log In form to logged-out visitors, and a Log Out link to those who are logged in.', 'buddypress' ),
    				'classname' => 'widget_bp_core_login_widget buddypress widget',
    			)
    		);
    	}
    
    	/**
    	 * Display the login widget.
    	 *
    	 * @see WP_Widget::widget() for description of parameters.
    	 *
    	 * @param array $args Widget arguments.
    	 * @param array $instance Widget settings, as saved by the user.
    	 */
    	public function widget( $args, $instance ) {
    		$title = apply_filters( 'widget_title', $instance['title'] );
    
    		echo $args['before_widget'];
    
    		echo $args['before_title'] . esc_html( $title ) . $args['after_title']; ?>
    
    		<?php if ( is_user_logged_in() ) : ?>
    
    			<?php do_action( 'bp_before_login_widget_loggedin' ); ?>
    
    			<div class="bp-login-widget-user-avatar">
    				">
    					<?php bp_loggedin_user_avatar( 'type=thumb&width=50&height=50' ); ?>
    				
    			</div>
    
    			<div class="bp-login-widget-user-links">
    				<div class="bp-login-widget-user-link"><?php echo bp_core_get_userlink( bp_loggedin_user_id() ); ?></div>
    				<div class="bp-login-widget-user-logout">"><?php _e( 'Log Out', 'buddypress' ); ?></div>
    			</div>
    
    			<?php do_action( 'bp_after_login_widget_loggedin' ); ?>
    
    		<?php else : ?>
    
    			<?php do_action( 'bp_before_login_widget_loggedout' ); ?>
    
    			<form name="bp-login-form" id="bp-login-widget-form" class="standard-form" action="<?php echo esc_url( site_url( 'wp-login.php', 'login_post' ) ); ?>" method="post">
    				<label for="bp-login-widget-user-login"><?php _e( 'Username', 'buddypress' ); ?></label>
    				<input type="text" name="log" id="bp-login-widget-user-login" class="input" value="" />
    
    				<label for="bp-login-widget-user-pass"><?php _e( 'Password', 'buddypress' ); ?></label>
    				<input type="password" name="pwd" id="bp-login-widget-user-pass" class="input" value=""  />
    
    				<div class="forgetmenot"><label><input name="rememberme" type="checkbox" id="bp-login-widget-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ); ?></label></div>
    
    				<input type="submit" name="wp-submit" id="bp-login-widget-submit" value="<?php _e( 'Log In', 'buddypress' ); ?>" />
    
    				<?php if ( bp_get_signup_allowed() ) : ?>
    
    					<span class="bp-login-widget-register-link"><?php printf( __( 'Register', 'buddypress' ), bp_get_signup_page() ); ?></span>
    
    				<?php endif; ?>
    
    			</form>
    
    			<?php do_action( 'bp_after_login_widget_loggedout' ); ?>
    
    		<?php endif;
    
    
    #177022
    Tecca
    Participant

    BP Default still comes packaged with BuddyPress, and it will for a while until it’s phased out. By then we’ll be seeing the theme on WordPress.org, though I believe there’s one already up.

    Add this to bp-custom.php to have it show in your WordPress appearances:

    add_filter( 'bp_do_register_theme_directory', '__return_true' );

    #177018
    n1ck
    Participant

    Thanks for your help, i changed them, if you have time take a look at my other 2 problems that i have.

    https://buddypress.org/support/topic/lower-the-search-textbox/

    https://buddypress.org/support/topic/change-textbox-size/

    #177011
    n1ck
    Participant

    not buddypress .css files?

    #176993
    Globetrotter12
    Participant

    Hi! I must admit that I love buddypress. But the activity page has not been well thought for the common usage. I agree that being able to collapse comments easily would be a huge step forward for the plugin. It should actually be in the options. Another option that is a MUST is the possibility of making updates the default, not everything.
    Without those, Buddypress is not going anywhere. With those buddypress would be a revolution.
    I have looked for info everywhere and nothing worked for me. I really love the plugin, you guys are awesome but please consider those two elements as usability necessities. It’s not just details.
    I am running with everything updated wordpress, buddypress everything. Please help, anyone, peers?

    #176989
    Neosnc
    Participant

    This worked beautifully for WordPress 3.8 + Buddypress 1.9.1. Thank you!

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