Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,476 through 12,500 (of 68,918 total)
  • Author
    Search Results
  • #241309
    Paul Bursnall
    Participant

    Hi Henry, thanks for the prompt reply. I understand what you’re saying and why that approach is always followed. It leaves me in a tricky spot though. I can’t use Ultimate Member and meet my deadline as their activity stream extension isn’t ready yet, and I can’t use Buddypress because the members functionality I need doesn’t exist in a single plugin (or if it does, I can’t find it). I’d like the solution to be in a single Buddypress plugin as opposed to relying on multiple plugins which may or may not be updated, or chunks of code taken from different sources that aren’t guaranteed to work further down the line.

    danbp
    Participant

    Which result when you use Twenty Fifteen theme ?
    Do you use some custom functions on group page ?

    Also, as of Codex https://codex.buddypress.org/administrator-guide/groups/
    This is a private group

    Options

    Group content and activity will only be visible to members of the group.

    Henry Wright
    Moderator

    Regarding 1, have a read of the Template Hierarchy article. This will give you an overview of how templates work.

    You’ll need to know PHP in order to do point 2.

    #241299
    kjgbriggs
    Participant

    I am unsure of how to use the data I now have for the profile field.

    I am sure it is not hard to display somewhere but I am having trouble working out how to do this without editing the core BuddyPress or BBPress files, otherwise when I update I will lose all of this.

    #241298
    danbp
    Participant
    #241296

    In reply to: Problem with gravatar

    shanebp
    Moderator
    #241290
    Henry Wright
    Moderator

    Media commenting isn’t available in core so you will need to find a plugin. Two popular media plugins I know of are rtMedia and MediaPress. Alternatively, you could build something yourself using the new BP Attachment API

    #241281
    sharongraylac
    Participant

    Sorry to take so long- this last post slipped by me!

    Yes, I did test with 2015 and still do not see it…

    The odd thing is I swore I saw this at one point, but I have no idea what happened to it. I even deleted ALL of the custom CSS I created for Buddypress, and still no “@username”.

    I’m also still having trouble centering the navigation/sub-nav on the profile page as well. At least the avatar is fixed! 🙂

    Thanks for your help!

    #241264
    danbp
    Participant

    hi @whiskyharry,
    it’s not a issue, it’s intended so.

    See here:

    Registration

    WordPress registration is explained here.

    #241261
    Henry Wright
    Moderator

    CSS and HTML are the things you’ll need to use in order modify the page. The BuddyPress Template Hierarchy article will show you which files you’ll need to modify. Note, you may have to create the templates if your theme doesn’t already have them.

    #241258

    In reply to: Buddypress Activity

    magicbmxfreestyle
    Participant

    Found a conflict between buddypress & buddypress friends only activity.
    I am very unsure why it happened as nothing was updated

    #241254
    Henry Wright
    Moderator

    Take a look at the Apply a Patch Using TortoiseSVN article. The article focuses on WordPress, but the same idea should apply to BuddyPress.

    #241251
    danbp
    Participant

    The problem when asking many question in different topics, is it lead to confusion.
    As you exlained (later) here, you switched from WP symposium to BP… so asking you for plugin list was a first step.

    Now it’s clear… at least at your install level.

    How and where are “developper” and “staff” items used/created ?
    With xprofile field ? A plugin ?

    #241246
    Henry Wright
    Moderator

    Are you interested in a plugin solution?

    Try BuddyPress Auto Group Join. It looks as though it’ll do what you need.

    #241241
    kjgbriggs
    Participant

    Sorry for the confusion, I have just switched FROM WPSymposium TO BuddyPress and BBPress as I believed they would offer a much more widely supported and updated experience and a lot more features, which they do.
    I believe I have managed to get rid of these lines by adding this to my CSS for anyone else having this problem.

    .bbpress #main-content .container:before {
    display: none !important;
    }
    #241239
    barrettathome
    Participant

    NM. Just found this and it is what I’m looking for.

    Members Navigation Menus

    #241230
    deklein
    Participant

    I wanted to update with some more details on that idea I had going in the last paragraph since I have done some more research. From my understanding, if a post is extremely long, buddypress will naturally create an “excerpt” of the post and give you a button to press to show the full post. I NEED THIS TO HAPPEN AUTOMATICALLY FOR EVERY POST THAT HAS A PLAYER/VIDEO IN IT. All i want to show is the text included with an option to load the player included in the post. I feel this would dramatically increase load times which would make using my site more rewarding. Any ideas or code I could add in to do this would be so appreciated! (:

    #241222
    danbp
    Participant

    Please give details about your install, it’s unclear
    https://buddypress.org/support/topic/when-asking-for-support-2/

    #241221
    kjgbriggs
    Participant

    I think this is a BuddyPress thing as it would not be limited to forums but displayable on the profiles page and users in admin, which im pretty sure is BuddyPress stuff.

    #241220
    danbp
    Participant

    According to another of your topics, you are using WP Symposium, which is another social network plugin for WordPress.
    https://buddypress.org/support/topic/wp-symposium-vs-buddypress/
    You can’t use both on a same site.

    #241219
    danbp
    Participant

    You’ve better to ask this on WP Symposium support if you don’t know how to handle this or on bbPress support. You’re on BuddyPress support here !

    #241218
    danbp
    Participant

    @quinngoldwin

    it goes to my personal activity instead.

    It’s intended so ! You’re on a profile page, and any links added directly to buddybar or his subnav is alwways, and only, user related. It’s a contextual menu.

    But you can use bp_member_options_nav action hook which is on the template.
    bp-templates/bp-legacy/buddypress/members/single/home.php

    Add this snippet to bp-custom.php your your child theme functions.php:

    
    function goldwin_custom_setup_nav() {
      if ( bp_is_active( 'xprofile' ) )
    ?>
    <li><a href="<?php bp_activity_directory_permalink(); ?>"><?php printf ('All Activities'); ?></a></li>
    <?php  
    }
    add_action( 'bp_member_options_nav', 'goldwin_custom_setup_nav' );

    By default, the hook is placed as latest item of the navbar items. To get as first item, simply move the action at the begin of the list.

    Default code looks like this:

    
    <ul>
    
    <?php bp_get_displayed_user_nav(); ?>
    
    <?php do_action( 'bp_member_options_nav' ); ?>
    
    </ul>

    that you can chage to:

    <ul>
    
    <?php do_action( 'bp_member_options_nav' ); ?>
    
    <?php bp_get_displayed_user_nav(); ?>
    
    </ul>

    But you can’t get your custom item as second, or third, or whatever. Only first or latest.

    How to use bp-custom, functions.php and child_theme is explained on the codex.

    #241211

    In reply to: Wrong Member Count

    RemonaStormborn
    Participant

    I’m having sync problems too.
    BP members: 146
    WP members: 370

    Some are only in the BP list and not the WP list so I can’t edit their roles or pretty much anything. WordPress 4.2.2, BuddyPress 2.3.2.1, housestormborn.com

    #241208
    Graeme Fulton
    Participant

    At the top of edit.php (yourtheme/buddypress/members/single/profile/edit.php), find this bit near the top:

    if ( bp_has_profile( 'profile_group_id=' . bp_get_current_profile_group_id() ) ) :
    	while ( bp_profile_groups() ) : bp_the_profile_group();

    The important part in the snippet above is this function call: bp_get_current_profile_group_id(). That grabs the current group ID from the URL, and sets it for the rest of the page. We want to change that bit.

    Just above the first code snippet I wrote, paste this query to collect all the profile groups into one variable:

    $sqlStr = "SELECT *idFROMwp_bp_xprofile_groups`”;
    $groups = $wpdb->get_results($sqlStr);`

    Now you can replace bp_get_current_profile_group_id() with this: $groups[0]

    That will leave you with this:

    if ( bp_has_profile( 'profile_group_id=' . $groups[0] ) ) :
    	while ( bp_profile_groups() ) : bp_the_profile_group(); ?>

    Now if you visit any of your edit profile group links, you’ll see all the groups on a single page.

    Next, you will probably want to remove the pagination from the page, as it will get included multiple times (since we’re in a while loop), and it is also unnecessary now that we’re showing all groups on one page.

    Remove this bit:

    <ul class="button-nav">
       <?php bp_profile_group_tabs(); ?>
     </ul> 

    Hope that works for you.

    #241205
    kjgbriggs
    Participant

    What I have managed to do is force the sections to full width with CSS, but I am getting odd white lines on the generated pages, I have created a post to try and identify what this is, I think it is the sidebar, but have no way to remove it or even confirm that.

    https://buddypress.org/support/topic/white-lines-displaying-on-pages/

Viewing 25 results - 12,476 through 12,500 (of 68,918 total)
Skip to toolbar