Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,251 through 17,275 (of 69,106 total)
  • Author
    Search Results
  • #180215
    simple-man
    Participant

    @henrywright

    I tried both your suggestions:

    1. Yes, I still get the “Invalid Activation Key” error if I copy and paste the link url directly in the browser.

    2. Ok, de-activated all plugins except buddypress and clicked the link (also pasted directly to browser) and still same error: Invalid Activation Key

    Thank you.

    #180210
    Henry Wright
    Moderator

    @simple-man if the activation key is in the database and the link in the email is right then the problem must be elsewhere.

    1. instead of clicking on the link in the email, are you able to copy the link and paste it directly into the browser address bar? It could be the click-through that is causing the problem. Just a thought.

    2. can you ensure all plugins are deactivated (aside from BuddyPress).

    #180207
    simple-man
    Participant

    I am the admin, but I don’t know how to check that.

    I also just chatted with my hosting company and they told me all the databases/tables appear fine and could not help me. They told me to try here at buddypress forums 🙂

    #180201
    simple-man
    Participant

    @djpaul

    Thanks for the response.

    I have tried everything I can think of, including testing with three different new accounts on different days.

    I keep getting the same error message: Invalid Activation Key

    Q: Can it be possible that BuddyPress (in our case) never stores the code in the database that it send in the registration email link? Perhaps that’s where the mis-match/invalid message is coming from?

    #180196

    In reply to: Share/Retweet Feature

    Paul Bursnall
    Participant

    Sorry, maybe my above explanation wasn’t clear. Say Paul Gibbs submits an update “Buddypress is great”, I’m looking for a feature to allow me to share / resubmit that myself, to be seen by my own followers.

    Activity plus allows users to share different media types.

    I’d like to be able to share the updates of any user with other users, potentially regardless of media type (although photo functionality is poor in BP) – same as ‘Share’ or ‘Retweet’.

    Thanks.

    #180187

    In reply to: Share/Retweet Feature

    Paul Wong-Gibbs
    Keymaster
    #180183
    Paul Wong-Gibbs
    Keymaster
    #180181
    Paul Wong-Gibbs
    Keymaster
    Paul Wong-Gibbs
    Keymaster

    @henrywright — BuddyPress doesn’t use WP roles or caps anywhere much yet, so giving edit_users won’t help.

    #180172
    Paul Wong-Gibbs
    Keymaster

    BuddyPress doesn’t currently user WordPress’ roles/capabilities systems. I haven’t looked at the code in while, but I’m pretty sure it’s going to be challenging to either add a new “role” or change the behaviours that are currently assigned to Group Mods/Admins/Members.

    It’s probably something relatively niche so I’d be pleasantly surprised if someone comes along with a readymade solution. I think you/someone is going to have to dive into the code and see what’s possible.

    #180170
    Paul Wong-Gibbs
    Keymaster

    @siteshack — do NOT create duplicate topics. You’ve already posted this here: https://buddypress.org/support/topic/buddypress-roles-and-capabilities/

    #180167
    DrMosko
    Participant

    can u give more details pls,

    I tried to edit buddypress\bp-core\bp-core-widgets.php

    line 80

    <?php else : ?>
    
    			<?php do_action( 'bp_before_login_widget_loggedout' ); ?>
    			<?php do_action( 'bp_before_sidebar_login_form' ); ?>
    
    			<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="" />
    				<br/>
    				<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( __( '<a href="%s" title="Register for a new account">Register</a>', 'buddypress' ), bp_get_signup_page() ); ?></span>
    
    				<?php endif; ?>

    and no results

    #180164
    Satyendra9717
    Participant

    Yes, I want to have buddypress as a forum on a separate subdomain like forums.mysite.com. Lets say i created a subdomain from wordpress mu and installed wordpress on it. what should i do next?

    Any link?

    Thanks

    #180160

    @drmosko,

    if you are using buddypress theme or child theme, you can easily hook the error message to the sidebar using:

    ‘add_action ( ‘bp_before_sidebar_login_form’, ‘my_xyz’);’

    jbroskos
    Participant

    I’ve done that, but when my test officer user clicks the edit button on the profile it just comes up with

    Not Found

    It looks like nothing was found at this location. Maybe try a search?

    This just seems to give the Officer role access to edit users within WP, but doesn’t apply to the BuddyPress Extended Profiles. 🙁

    #180145
    DrMosko
    Participant

    if a user came from buddypress page and try to connect he is buddypress user for sure ,but if he got to login page from another place he isnt.
    u can see the idea in the func above.
    is there a way to pass all the login warnnings like wrong password to the buddypress page

    #180141
    shanebp
    Moderator

    For renaming things, the recommended practice is to use a language file:

    Customizing Labels, Messages, and URLs

    If you make a lot of changes, you should use that approach.

    The ‘counting bubble’ is filled using sprintf.
    You’re missing that call from your change.
    You could try
    $bp->bp_nav['messages']['name']='Mails <span>%d</span>';
    But I’d be surprised if it works.

    Here’s another method, that you can paste in your functions.php:

    function sundev_change_buddypress_profile_tabs( $translated, $original_text, $domain ) {
    
        if ( 'buddypress' !== $domain )  {
            return $translated; 
        }
    
        switch ( $original_text ) {
        
            case 'Messages <span>%d</span>':
                return 'Mails <span>%d</span>';
    
            case 'Messages':
                return 'Mails';
                			
            default:
                return $translated;
        }
    }
    add_filter( 'gettext', 'sundev_change_buddypress_profile_tabs', 10, 3 );

    Untested, but that should change the label in both a profile and the buddy-bar.

    #180139
    DrMosko
    Participant

    thank u for try to help me, but I ask again,
    I have many needs for diffrent users, one type of users is buddypress, I dont want all my users to connect through front-end, only buddypress users.
    in ur suggestion I will redirect all logins to specific loaction.

    so what I did is :

    //redirect buddypress users login to frontpage 
    function redirect_wp_login_buddypress(){
        global $pagenow;
    	$prev_url = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
    	
    	if ( $prev_url ) {
    		$prev_path = str_replace( home_url(), '', $prev_url );
    		$page = get_page_by_path( $prev_path );
    		}
    	
    	if ( $page->ID == '31' &&	$pagenow == 'wp-login.php') { // buddypress parent page
    		wp_redirect( home_url() . '/?p=31/', 301 );
    		exit();
    		
    	}
    }
    add_action( 'init', 'redirect_wp_login_buddypress' );

    $page->ID == '31' 31 is my buddypress frontend page

    the problem with this is that if user insert incorrect pass or user name, he will not be noticed, also he wont get resend details option,
    can u think of a better way?

    #180137
    shanebp
    Moderator

    Yes, BP_User_Query now supports preserving the order the ‘user_ids’ parameter.

    So if you’re using a function to collect member ids, take a look at

    BP_User_Query

    Note the last entry.

    #180134
    simple-man
    Participant

    I haven’t received any help in almost a week after posting, so I will be calling on some of the buddypress developers here for help:


    @boonebgorges
    @modemlooper @jjj @mercime @djpaul

    I have posted the activation link above.

    Please let me know what can I do to solve this.

    Thank you!

    #180132
    Renato Alves
    Moderator

    The procedure explained in the article doesn’t apply. What would work for you is to install another WordPress installation in the subdomain with the only purpose of hosting BuddyPress. I’m not sure if that’s what you’re trying to do bu I’d recommend using WordPress Multisite for that.

    sundev
    Participant

    Hi. This is not a buddypress issue but the plugin you use which by default, messages should be delivered into there registered email. You may need to make a self test by your self. One of the good type is(wp job board)

    #180109

    In reply to: Multisite

    cheungvong
    Participant
    #180108

    In reply to: Multisite

    Md. Al-Amin
    Participant
    #180104
    shughey
    Participant

    @buddyboss,

    I’m having the same problem so I tried using your fix but something is wrong. I don’t have:

    elseif ( bp_is_user_forums() ) : bp_get_template_part( 'members/single/forums' );

    I have:

    elseif ( bp_is_user_forums() ) : locate_template( array( 'members/single/forums.php' ), true );

    Using WP 3.8.1 and Buddypress 1.9.2

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