Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,426 through 16,450 (of 69,016 total)
  • Author
    Search Results
  • #184464
    @mercime
    Participant

    i used this buddypress tool count total number


    @jrzwv
    you mean https://codex.buddypress.org/buddypress-components-and-features/buddypress-repair-tools-admin-screen/ ? Is the actual member count more OR less than what is showing on your screen? Are you using a cache plugin? If so, have you cleared cache and/or deactivated that plugin?

    #184463

    In reply to: BuddyPress Multisite

    @mercime
    Participant

    I only want multiple child sites with serparated BP instances


    @plose2009bx
    in that case, http://buddydev.com/plugins/buddypress-multi-network/

    #184462
    @mercime
    Participant

    @jlent14 it is likely a theme issue. Have you tried deactivating all other plugins except BuddyPress to exclude the possibility of plugin/widget conflict?

    @mercime
    Participant

    @jrzwv Some of the issues associated with using premium framework themes is that there are more chances of plugin conflicts and that we have no access to the theme. Good thing is, you should be able to get free support for your premium theme.

    Change your theme to Twenty Fourteen. If the issue is resolved with the change, then please contact the theme author about the conflict with BuddyPress plugin.

    #184452
    mixtapela
    Participant

    Hello @mercime

    The url is: mixtapeLA.net/activity
    Please use the following credentials:
    Username: bpuser
    password: bpuser1

    I’ve reinstalled a fresh unmodified copy of the theme, I’ve even completely removed buddypress and deactivated all the plugins but the issue is still there.

    Please help!
    Thanks

    #184451
    blauweogen
    Participant
    #184446
    juhanib
    Participant

    I was able to get the avatar form to show up with this snippet:

    
    function setup_custom_nav() {
      global $bp;
      bp_core_new_subnav_item( array(
        'name' => __( 'Change Avatar', 'buddypress' ),
        'slug' => 'change-avatar',
        'parent_url' => $bp->loggedin_user->domain . 'settings/',
        'parent_slug' => 'settings',
        'screen_function' => 'ca_screen_function',
        'position' => 30,
      ) );
    }
    
    add_action( 'bp_setup_nav', 'setup_custom_nav');
    
    function ca_screen_function() {
      add_action( 'bp_template_content', 'change_profile_picture_screen_content' );
      bp_core_load_template( apply_filters( 'xprofile_template_change_avatar', 'members/single/plugins' ) );
      xprofile_screen_change_avatar();
    
    }
    
    function change_profile_picture_screen_content() {
      bp_get_template_part( 'members/single/profile/change-avatar' );
    }
    

    But when I try to upload a new avatar the resizing/cropping screen doesn’t show up.

    #184444
    sg107
    Participant

    Were you able to solve your issue? I think there is a plugin for this. Try a Google search for adsense in BuddyPress activity stream etc.

    #184436
    dzung
    Participant

    For now, I’ve come to another solution, where I allow users to Register new account with base Fields and a Role selection (Student or Lecturer in my case). They then fill in only base field and then after account creation they can update their Student or Lecture xProfile Group Fields in their profile page edit.

    I do these above by using 3 plugins:

    1. https://wordpress.org/plugins/wpfront-user-role-editor/
    This will allow me to add new Role: Student and Lecturer in my case (I have tried other Role plugin but they conflict with other plugins on my site, this one doesn’t).

    2. https://wordpress.org/extend/plugins/wp-roles-at-registration/
    This one allow me to add a Drop down for New user to choose their wanted role : Student or Lecturer

    3. https://wordpress.org/extend/plugins/buddypress-xprofiles-acl/
    This plug in allow me to set buddypress xProfile group to a specific user role. In my case, I created two xProfile Group fields named “Student” and “Lecture” each has different fields. Then using this plugin I assigne the xProfile Student to Student Role, and the xProfile Lecturer to Lecturer Role.

    That’s all done!

    Meanwhile I will use this, but I still want to be able to have two sign up forms with different fields so that I can require New user to fill in the Required field to make the profile better. I can’t code much so hope someone will help!

    #184426
    aces
    Participant

    @gt-director
    You wrote:

    (I’m using WordPress v3.4.4 and BuddyPress v2.0.1)

    Buddypress v2.0.1 requires at least wordpress 3.6 – see https://codex.buddypress.org/developer/releases/

    Andrea Reed
    Participant

    I used this in my child theme stylesheet and it worked on the Members Directory page:

    #buddypress #members-dir-list a.friendship-button.is_friend.remove {
    display: none;
    }
    

    What is nice is that when you click on the profile of someone who is a friend, you can still cancel the friendship there if you need to.

    #184420
    maddogmcewan
    Participant

    excellent got it working. I added this to the footer area in create.php

    <?php get_footer( 'buddypress' ); 
    	$blogname = esc_attr( $_REQUEST['site'] ) ;
    ?>
    
    <script language="javascript">
    var blogname;
    blogname = document.getElementById('blogname');
    if(blogname){
    blogname.value = "<?php echo $blogname;?>";
    }
    </script>
    #184417
    Henry Wright
    Moderator

    If you take a look at the docs on the Masonry website you’ll see that you can do something like this with jQuery

    <script>
    jQuery('#container').masonry({
      columnWidth: 200,
      itemSelector: '.item'
    });
    </script>

    #container and .item are used in the example but in BuddyPress they will be something like #members and .member. For example your BuddyPress page source code might look like this

    <div id="members"> <!-- this is the #container -->
    
        <div class="member"> <!-- this is the .item -->
            <!-- various stuff happens here for a particular member -->
        </div>
    
        <div class="member"> <!-- this is the .item -->
            <!-- various stuff happens here for a particular member -->
        </div>
    
        <div class="member"> <!-- this is the .item -->
            <!-- various stuff happens here for a particular member -->
        </div>
    
    </div>

    Note I’ve made up these selectors, they will be something different so check your BP templates.

    #184416

    In reply to: BuddyPress Multisite

    @mercime
    Participant

    @plose2009bx there is one instance of BuddyPress per WP multisite. You would see the BP admin screens via Network Admin settings. There are plugins to have separate instances of BP per WPMS subsite like those mentioned in this trac ticket.

    #184415

    In reply to: Can't

    @mercime
    Participant

    @bluesharp I’ve never used WAMP However for blank pages, you might want to check out https://codex.buddypress.org/getting-started/troubleshooting/blank-pages/ Also, please make sure that you have “pretty permalinks” set up (not the pseudo-pretty permalinks with /index.php appended).

    #184412
    piratescott
    Participant

    I don’t use buddypress for my user account sign up even though I use buddypress, you might want to give this a look http://wordpress.stackexchange.com/questions/15954/separate-registration-and-login-for-different-roles

    @mercime
    Participant

    @sillery4ever Where are you hosted – locally or shared/vps/dedicated hosting? What other plugins are activated in your installation? Have you tried deactivating all plugins except BuddyPress?

    WordPress 3.5.1 – Buddypress 2.0.1

    If the 3.5.1 version is not a typo, know that that WP version is compatible up to BP 1.8.1 only. https://codex.buddypress.org/developer/releases/

    sillery4ever
    Participant

    WordPress 3.5.1
    Buddypress 2.0.1

    All my users are displayed in …wordpress/wp-admin/users.php before i activated BP.

    during BP is activated, …wordpress/wp-admin/users.php don’t display any user, the list is empty. I see only the title of the column (User/name/email/role/…) and the number of user by role. 0 line is display 🙁

    after i deactivated BP, all the data are correctly displayed as before i activate of BP !

    I don’t understand. I can’t continue to use BP if i can’t manage my user list.

    Somebody to help me ?

    TY

    Nano

    #184388

    In reply to: Can't

    dzung
    Participant

    I’ve re-installed many times to test and found that if bbPress installed and I try to enable the setting for Component User Groups by checking it. That will make error. I use the Latest versions of wp, buddypress, bbpress and default wp theme.

    This is my 3rd times post so I hope someones will give some info that helps me to fix this.

    #184384
    @mercime
    Participant

    I’m advised by Buddyboss support to call the sidebar on this page: /buddypress/bp-themes/bp-default/registration/register.php … I am editing the right file?


    @style960
    No idea why their support is advising you to call the sidebar on the bp-default theme instead of using BP theme compatibility as we have no access to the premium theme. Perhaps you just need to clarify what they really meant by asking them to provide you with an example. Surely, you are not the only on who wants a sidebar in that theme.

    @mercime
    Participant

    all my users are in database, but i cant edit them by this page ….wordpress/wp-admin/users.php


    @sillery4ever
    Surprised. WP/BP versions? BuddyPress adds BP-specific admin panels and some filters, etc. only and doesn’t remove anything in wp-admin. So what happens when you deactivate BP, do the users show up again in wp-admin/users.php?

    #184375
    mixtapela
    Participant

    Here’s a temporary fix for the meta buttons showing vertically:

    Add this to your style.css:

    #buddypress #activity-stream p

    However the spacing is way off and my “Share” (Buddypress Social) button is not working unless I click on “Load more”.

    I hope this helps.

    #184368
    shanebp
    Moderator

    Yes.
    To preserve the order, use the ‘user_ids’ parameter.
    More info.

    #184355
    @mercime
    Participant

    @barniseun Have you checked the forums of the theme author re compatibility with BuddyPress or any template solutions? I can imagine that there are users of the theme or those from the same theme author who would like to install BP in their sites.

    #184351
    Henry Wright
    Moderator

    Using Masonry with the BP activity feed would be possible. It’s a loop of data just like a loop of blog posts. You might need to change some of the default selectors to match the BuddyPress markup but aside from that I see no problems.

Viewing 25 results - 16,426 through 16,450 (of 69,016 total)
Skip to toolbar