Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,901 through 4,925 (of 68,945 total)
  • Author
    Search Results
  • #305033
    Venutius
    Moderator

    The usual CSS to change the members-list is as follows:

    #buddypress #members-list li {
    overflow: auto;
    list-style: none;
    float: left;
    width: 30%;
    margin: 0 20px 28px 0;
    border: 0;
    }

    This might work but it depends on which option you are using for the list.

    Also, another option is to use BP Directory Views, this gives a better three column layout in that it avoids an uneven display of the three column view.

    #305025
    somatherapist
    Participant

    Yes, it is checked. I’m using BuddyPress and MemberPress and some of the pages canceled each other out. What is supposed to be on the Groups Page?

    #305023
    creationgenius.com
    Participant

    I’m using Rehub theme & latest version of BuddyPress but still, I can’t be to click over the status bar in activity, groups. I can’t be able to write anything & no post button is showing.

    http://prnt.sc/ndgz2e

    I’m facing the problem over the both mobile & desktop platform.

    Please check the same over. https://www.paisowala.com/activity

    Thank you.

    bob0072
    Participant

    HA HA HA HAAAAA! I knew as soon as I hit send, it didn’t make a lick of sense. Let me try again ????.

    Buddypress and BBpress. In their “standard style”, the forum is basically in Grid form, (and that’s cool), but, I would like to break the grid form apart so that, say, when a Christmas Tree vendor post, the post has more style than just a grid. By “style” I mean that the forum doesn’t just have a grid format, rather more of a page layout. I am trying to come up with a way to keep the page more visually interesting to the general public, rather than the standard grid view, like this forum for instance. Not knocking standard forum stying, just looking away to jazz it up a bit.

    #305018
    shanebp
    Moderator

    In wp-admin > Settings > BuddyPress > Options, did you select this option and save?
    Enable group creation for all users

    Then everyone should see a Create button on the Groups directory page.

    #305006
    Venutius
    Moderator

    Hi there, to get around the issue with posting your code I’ve added it to the bottom of my webpage BuddyPress Customisation Tips:

    you can find this page in the snippets section of buddyuser.com

    mitchellbc
    Participant

    Im working on a (ims) chat system using buddypress

    And im looking to find a way to have a certain user account, (admin)
    Allways online.

    Is this possible? if so. what would i need to do.

    #304970
    shanebp
    Moderator

    You can use this filter hook:
    apply_filters( 'bp_nouveau_get_groups_directory_nav_items', $nav_items );
    Found in: buddypress\bp-templates\bp-nouveau\includes\groups\functions.php

    You can definitely add a nav item with that hook.
    And you should be able to reorder the existing items.

    Take a look at the nav item structure:

    function pp_groups_dir_nav  ( $nav ) {
        echo '<pre>'; var_dump( $nav ); echo '</pre>';
        return $nav;
    }
    add_filter( 'bp_nouveau_get_groups_directory_nav_items', 'pp_groups_dir_nav' ); 

    But you are writing a custom theme, so it would be easier to write a custom function to replace
    function bp_nouveau_get_groups_directory_nav_items rather than filter the current output.

    #304962
    Venutius
    Moderator

    I’m confused, the users activity page is the default home page in BuddyPress. It goes to the personal activity page. I’m sorry if I or anyone else here gave you that impression. I recently wrote a thread which explained how to create a new combined activity page for the user and set that as the new default landing page. It’s slightly complex but very doable:

    how to combine activity tabs to one

    #304952

    In reply to: Text missing

    Venutius
    Moderator

    The original english in those files it sent to a file called buddypress.pot, from this the WordPress translators create country specific .mo files. I’m wondering if the language file for your country is missing this translation. It could very well be the case as this was only recently introduced.

    #304950
    Venutius
    Moderator

    If you go to Appearance/Menus in WP Admin, you should be able to edit the menu and delete those links. While you are there, click on Page Options on the top right of the page and make sure BuddyPress is checked.

    Note: it looks like you have multiple menus so you will have to select the correct menu to edit.

    Then you should see the BuddyPress menu links meta-box and you will see there’s a login link you can add to the menu. That should sort out your BuddyPress login, same with Register.

    I’ve got a site buddyuser dot com, I’ve created a beginners introduction to BuddyPress, you might want to take a look at that.

    It’s possible to hide menu links that you don’t want the general public to know about. There’s a few plugins that do this but one I use is https://wordpress.org/plugins/nav-menu-roles/ this adds a handy checkbox to allow you to stipulate who can see that menu item.

    #304946

    In reply to: Text missing

    Venutius
    Moderator

    There’s two locations for that text Anders depending on which BuddyPress theme you are using. there’s:

    wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/data.php on line 49.

    and there’s wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/single/data.php also on line 49.

    Do you think it’s missing from your countries translation file?

    #304941
    Venutius
    Moderator

    Oh you want to display something actually in the field loop, here’s the hook for that – bp_profile_field_item

    That’s all the hooks on that page. If you want to do something different to that then you would probably need to overload the profile-loop.php template file. it’s in plugins/buddypress/bp-templates/your-bp-theme/members/single/profile/profile-loop.php. You’d edit a copy of that then put it in themes/your-child-theme/buddypress/members/single/profile

    #304940
    btees
    Participant

    Thanks for that @shanebp

    I’ve been trying to use something like the “Builds an Activity Meta Query to retrieve the favorited activities” part of that document combined with the feed merging solution offered in this thread:

    how to combine activity tabs to one

    But I can’t seem to wrap my head around it.

    I’ve been trying to add the meta_query to my $retval like this:

    array(  
            'meta_query' => array(
                array('meta_key' => 'bpcat',
    			'meta_key' => $industry))
    			
        ),

    Where $industry is a variable associated with the viewers account like:
    $industry = xprofile_get_field_data( 2, $user_id, false );

    But I’ve also run it with a fixed value for testing ( 'meta_key' => $industry ), no joy either

    #304938
    Venutius
    Moderator

    Hi,

    I’ve just had another look at your register link, for BuddyPress it’s incorrect, it’s showing as sitename.com/register/member, if this is default BuddyPress it should be sitename.com/register

    #304933
    Venutius
    Moderator

    Hi there,

    The login link is not buddypress, it’s got the option [PM_Login] so would assume it’s by a plugin with PM in the title. You should be able to delete this in the Appearance>>Menus page though. Same with the registration link, it’s PM_Registeration so the same plugin caused that.

    Whats the slug of your BuddyPress register page?

    #304913
    beefi1123
    Participant

    Is there a way I can send you my login because I don’t think relaying fixes is the best way to solve this. It seems there was a similar problem 3 years ago that went unresolved as well:

    Registration page does not work

    #304907
    Venutius
    Moderator

    I’d still deactivate all of your plgins and see if vanilla BuddyPress works

    #304894
    Venutius
    Moderator

    So it’s looking like this is not BuddyPress but rather something else that is rejecting the passwords that are too simple.

    #304892
    andhi1
    Participant

    I wonder if this is a BuddyPress question.
    In WP admin > user there is a possibility to add your own fields.
    When I add an address to a URL field, it will not be clickable.
    Is this you can help me with?
    BR
    Anders H
    Sweden

    #304890
    Venutius
    Moderator

    I’ve just tried it using your signup details and a different email. It failed, basically it seems to not like your choice of password. As I understand it BuddyPress does not do anything to check passwords but relies on the existing WordPress functions. I’m wondering if you’ve added anything to reject easy passwords?

    John Franco
    Participant

    How Well Do Buddypress Work in Divi Theme

    #304864
    Venutius
    Moderator

    Hi there,

    First thing to try is to deactivate all other plugins apart from BuddyPress and see if that works.

    Have you performed any customisations relating to the register form?

    alexwp2019
    Participant

    Hi,

    I’m building a website using buddypress and bbpress.

    When users register for an account the default roles they are assigned are “Contributor” and “Participant”.

    These users at the moment cannot view members in the members list and send private messages.

    For the members list I believe the js / ajax is not working for the “Contributor” role for some reason (it loads fine for all other users and for non logged in users).

    When viewing the members list as a contributor the members do not load and I receive a js error in the developer console reading “Cannot read property ‘contents’ of undefined”.

    There must be an issue specifically for that user role, could there be a permissions issue?

    For private messaging the messages simply won’t send. I’ve checked the ajax in the console and it return 200 so i’m not sure what the issue is. I’m also using user role editor and I’ve checked and “Contributors” can send messages so I’m a bit stuck with this one.

    I’ve also tried changing the bbpress role which as expected had no effect.

    Thanks in advance for any help.

    I’m happy to go into more detail if needed but not willing to give out the sites URL.

    #304847

    In reply to: Buddypress Users

    snorklebum
    Participant

    Have you tried Dashboard -> Tools -> BuddyPress then run the Repair total members count?

Viewing 25 results - 4,901 through 4,925 (of 68,945 total)
Skip to toolbar