Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,876 through 4,900 (of 69,042 total)
  • Author
    Search Results
  • #305081
    nonasun
    Participant

    Found more. This is due to the Template Pack. If I change it to BP Legacy, it works (including the search for groups and members). Then if I change it back to BP Nouveau, they are broken again. Looks like I’m having the same issue as this one:
    https://buddypress.org/support/topic/nouveau-group-post-activity-not-shown/.

    Any update on this bug?

    Thanks

    #305080
    nonasun
    Participant

    More investigation result. Here’s one example: When I say the format is gone, the icon in front of string “Registering for this site is easy.” doesn’t show. When I inspect the element, it’s there:
    <span class=”bp-icon” aria-hidden=”true”></span>

    But in the Styles, it doesn’t have any of the styles from buddypress.min.css, e.g. “.buddypress-wrap .bp-feedback.help .bp-icon, .buddypress-wrap .bp-feedback.info .bp-icon”

    So looks like it’s due to the problem to load the css file. But I do see the file under /site/wwwroot/wp-content/plugins/buddypress/bp-templates/bp-nouveau/css.

    Comparing that file with the same file from a website which works, they are the same. So the file is good. But somehow it’s not loaded.

    #305075
    nonasun
    Participant

    Thanks for the quick reply. When I said import, I mean the other website is also using WordPress. I did get 2 Register page after importing. I set the original Register as the page for Register in BuddyPress Settings -> Pages. The page did load with all the injected fields like:
    Username (required)Email Address (required)Choose a Password (required) Confirm Password (required).

    But the problem is they are all in 1 line.

    Thanks

    #305074
    shanebp
    Moderator

    BuddyPress will not use the content from pre-existing pages.
    It injects all content into each page assigned to each component.

    Please review this content from the BP documentation.

    #305062
    shanebp
    Moderator

    I cannot duplicate your issue.

    I created a Profile field called Nickname and set it to Required.

    I can edit that field via the Extended tab – and it has no effect on any field on the User > Profile edit screen.

    Under Settings > BuddyPress > Options, do you have this option selected ?
    Enable BuddyPress to WordPress profile syncing

    I tested then toggled that option – the behaviour was the same re your issue.

    #305049
    beekoff
    Participant

    Thanks for your suggestions @venutius. With these the only options I’m going to wait for BuddyDev to update a workaround into BuddyPress Member Types Pro plugin (he’s very proactive, and says it’s now in queue).

    Hopefully Nouveau and future BP templates will make conditionally hidden (but required) xProfile fields inert in this state. These fields are so important to augmenting registration on BP sites, and so hopefully it gets baked into the code (instead of having to find workarounds).

    I appreciate your help!

    Sam

    Venutius
    Moderator

    Sorry, this forum is for BuddyPress support, Youzer is premium only so if you want to use it you would need to pay.

    #305038
    Venutius
    Moderator

    See my response in https://buddypress.org/support/topic/bypass-email-requirement-2/ it includes a function to remove the required setting for profile fields in BP Nouveau, I think it will help.

    #305034
    Venutius
    Moderator

    You might have a conflict, try deactivating all other plugins apart from BuddyPress and switching to a default theme such as Twenty Seventeen then testing.

    #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?

Viewing 25 results - 4,876 through 4,900 (of 69,042 total)
Skip to toolbar