Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,876 through 10,900 (of 73,985 total)
  • Author
    Search Results
  • jgarate
    Participant

    HI,
    I would like to change the items names in the groups navigation menu? I’ve read that you can do that with the Navigation API, but, where do I find this?

    Wordpress: 4.7.5
    buddypress: 2.8.2

    Thanks

    #266282
    bkseen
    Participant

    Hi there.

    I would like to be able to make a count of my members per “City” outside BuddyPress class (like in function.php / JS function or Php+Html code.

    Any clue on how to do it?

    Cheers

    #266280
    Henry Wright
    Moderator

    You don’t need this:

    if ( !function_exists( 'xprofile_get_field_data' ) ) { 
        require_once '/bp-xprofile/bp-xprofile-functions.php'; 
    } 

    If BuddyPress is active then xprofile_get_field_data() should be available.

    #266279
    r-a-y
    Keymaster

    Copy the code from here:
    https://pastebin.com/raw/X6Nc0Qds

    Into /buddypress/bp-core/css/avatar.min.css.

    The user tested this on iPhone 6S, iPad Mini and iPad Air with success.

    I believe the last successful version was BP 2.7.2, but the CSS I linked to should account for that.

    wci
    Participant

    Dear support team,

    please help to solve the issue, while buddypress is active then bbpress search results are not displayed as it should, because the URL is then forward to main page instead of display the search results.

    Screen video > https://www.screencast.com/t/DjsAlpyn2s

    Looking forward to your help.

    BR, Alex

    kariellen35
    Participant

    Hello!:)

    I have been trying to figure out how to set up this plugin so that I can use it to create specific forums for my website. Here is my website information:

    WP version 4.7.5
    BP version 2.8.2
    URL: http://sailingcordelia.com/mycrewlink

    I need to create specific forum pages for my users to use for designated topics (Deployment, Checkride Gouges, Training Prep). If you select the Message Board on the front you can see how I have it set up for now. I love what I am seeing so far with BuddyPress but I am not sure this is going to serve the purpose that I need it to and have been spending many hours over the last three days trying to figure out your system. I was just wondering if there is any way for me to set it up this way and if so how I can do it. The only option I have narrowed it down to so far is to create separate groups, however, I’m not sure this is going to serve well as a forum and am confused about how to set up the options. I have read through your user guide and its difficult for me to understand how to use your group/member/etc.. activity streams and if this would even be the best way to set it up. Any advice you can provide would be very much appreciated.

    Thank you so much for your time!

    Take care,
    Kari

    gbowman
    Participant

    I have a site with (amongst others) BuddyPress, BadgeOS and the BadgeOS Community Add-on.

    The BadgeOS Community Add-on allows achievements earned through BadgeOS to be added to the users activity stream. I would like these updates to also be posted to the stream of each group the user is a member of (usually only one).

    I have located the section of code in the BadgeOS Community Add-on that is adding the activity when an achievement is awarded: (badgeos-community-add-on/includes/bp-activity.php)

    function badgeos_award_achievement_bp_activity( $user_id, $achievement_id, $this_trigger, $site_id, $args ) {
    
    	if ( ! $user_id || ! $achievement_id )
    		return false;
    
    	$post = get_post( $achievement_id );
    	$type = $post->post_type;
    
    	// Don't make activity posts for step post type
    	if ( 'step' == $type ) {
    		return false;
    	}
    
    	// Check if option is on/off
    	$achievement_type = get_page_by_title( str_replace('-',' ', $type), 'OBJECT', 'achievement-type' );
    	$can_bp_activity = get_post_meta( $achievement_type->ID, '_badgeos_create_bp_activty', true );
    	if ( ! $can_bp_activity ) {
    		return false;
    	}
    
    	// Grab the singular name for our achievement type
    	$post_type_singular_name = strtolower( get_post_type_object( $type )->labels->singular_name );
    
    	// Setup our entry content
    	$content = '<div class="badgeos-achievements-list-item user-has-earned">';
    	$content .= '<div class="badgeos-item-image"><a href="'. get_permalink( $achievement_id ) . '">' . badgeos_get_achievement_post_thumbnail( $achievement_id ) . '</a></div>';
    	$content .= '<div class="badgeos-item-description">' . wpautop( $post->post_excerpt ) . '</div>';
    	$content .= '</div>';
    
    	# Bypass checking our activity items from moderation, as we know we are legit.
    	add_filter( 'bp_bypass_check_for_moderation', '__return_true' );
    
    	// Insert the activity
    	bp_activity_add( apply_filters(
    		'badgeos_award_achievement_bp_activity_details',
    		array(
    			'action'       => sprintf( __( '%1$s earned the %2$s: %3$s', 'badgeos-community' ), bp_core_get_userlink( $user_id ), $post_type_singular_name, '<a href="' . get_permalink( $achievement_id ) . '">' . $post->post_title . '</a>' ),
    			'content'      => $content,
    			'component'    => 'badgeos',
    			'type'         => 'activity_update',
    			'primary_link' => get_permalink( $achievement_id ),
    			'user_id'      => $user_id,
    			'item_id'      => $achievement_id,
    		),
    		$user_id,
    		$achievement_id,
    		$this_trigger,
    		$site_id,
    		$args
    	) );
    
    }
    add_action( 'badgeos_award_achievement', 'badgeos_award_achievement_bp_activity', 10, 5 );

    I believe the line 'type' => 'activity_update', is the part that decides how the activity is posted.

    I’ve read up on the page https://codex.buddypress.org/plugindev/bp_activity_add-2/ but I’m still a little confused as to why these activity updates are not being shown in the group stream.

    Any pointers?

    #266264
    lepkon
    Participant

    I have setup configured buddypress and configure it so that any user can register

    but when I go to /register it redirects to homepage ?

    Is this normal behavior ?

    It’s a brand new wordpress install with no other plugin than buddypress.

    #266261
    dxlwebs
    Participant

    Hi there i’m trying to pull a field from a custom field in the profiles, everything works on the profile page but i want to pull the field to another part of wordpress but im not able to find any hook information.

    basically i have a field in profile called youtube

    in our forum section id like to pull that field and display it under their avatar on our forum.

    i dont need the entire code just the hook 🙂 thnx for any info you can provide

    #266260
    ico33
    Participant

    I created a private (so reserved to members) Group with Buddypress and added a bbpress Forum inside it, as allowed during the creation of the group.

    Problem: if I make a post in that forum, the post goes also into my activity stream and everybody can see it from my profile, everybody can see it even if not a member of that private Group!

    Any idea?

    #266245
    jls2017
    Participant

    I can’t understand why NONE of the media plugins or Buddypress seem to come with the functionality allowing images that are uploaded to a group wall… to show up in the users “media” tab? They are the users images being posted so why can’t those be included?

    I’ve checked mediapress, buddypress activity plus, rtmedia, buddyboss wall and media uploads, you name it. None of them do this.

    Is there a simple profile template hack or something that could get these images included in the users profile media tab? Thanks

    #266243

    In reply to: Ghostusers

    shanebp
    Moderator

    Did you try using the Repair tool?
    wp-admin > Tools > BuddyPress

    #266242
    chickendash
    Participant

    So, we kind of crashed our Website completly, and upon reinstalling the Buddypress plugin we still have 162 Users which are not found under the Users list. Where can i find these entries to delete them?

    #266240
    stevencohen777
    Participant

    Hi, Is there a way to hide the members page when logged out and only see it when logged in? Perhaps a plugin? I am not a programmer but if you provide me with a snippet of code and directions on where to apply it, I can do that.

    WordPress 4.7.5 running Divi theme
    BuddyPress Version 2.8.2

    Thank you.

    #266238
    stevencohen777
    Participant

    Hi, I want to add hyper links to the registration page what open up in a new window. How can I do this? I want to emulate the Facebook login page where there are links to their policies on their signup page that open up in a new window.

    I did get the hyperlink to work in a custom field description for check boxes but it will not allow me to open up the link in a new window.

    WordPress 4.7.5 running Divi theme
    BuddyPress Version 2.8.2

    Thank you.

    jgarate
    Participant

    Hi,
    when someone goes to the registration page of my site, they have acces to some information for the people already logged in, some widgets that tell you about the activity, members and so on. On the “registration page” on the backend I’ve removed all the widgets but they appear anyway.
    Wordpress: 4.7.5
    Buddypress: 2.8.2
    site: collectifmagnolia.org
    registration page: http://collectifmagnolia.org/inscription/

    thanks

    Jesus Garate

    bkseen
    Participant

    Basically, I would like to add a map of my BuddyPress Members per suburbs location and when I then when I click on it redirect to a specific Url.

    Problem: I can’t figure it out how to retrieve the BuddyPress Member “location” as a custom field and give it a ‘lat’ and ‘long’ then count them automatically.

    My map plugin used (Progress Map) is using google map API.

    At the moment I’ve setup by default the custom field of Progress Map to Post, then have created 2 ‘Post’ in order to have my Markers.

    I have two very powerful plugins but can’t figure out how to make them work together.

    Thanks in advance 🙂

    Cheers

    Source: https://spanishblackgarlic.com/spanishblackgarlic/

    breakofdawn
    Participant

    WP 4.7.5
    BuddyPress 2.8.2

    On my top-level menu, I have added the BuddyPress logged-in menu items. Logged-in users using those items (Profile, Settings, etc.) on the homepage are brought to my main administrator account’s member page (it thinks the main admin is the logged in user). However, if the user selects the menu item from any other page, it brings them to the correct member page (their own).

    *EDIT – Added information* Once I navigate to the correct member page, it works as it should on the homepage. */EDIT*

    I don’t know how to decipher the programming, but does it have something to do with this: https://buddypress.trac.wordpress.org/ticket/4624 ?

    In my specific setup, I’m using BuddyPress to manage a users own userdomain, with no need to view or inspect any other users.

    I have tried clearing the cache and using new browsers, but the behavior is the same.

    Not sure if there is a private response option, but I can include the domain there if needed.

    gloomfall
    Participant

    Hello!

    Wordpress: Version 4.7.5
    BuddyPress: Version 2.8.2
    Site Link: http://www.shsmash.com

    I just started up a new site and have been having trouble finding an answer to some issues I’ve been having. This is related to the BuddyPress notification emails that get sent out to users when they register for the site and when they receive other notifications.

    Here are some of the Email Macros being used:

    {{{activate.url}}}
    {{{message.url}}}
    {{{group.url}}}

    ETC.

    Whenever a URL like that is inserted automatically into the email it generates something strange that points to somewhere on the site that does not exist.

    Example: http://email.shsmash.com/c/eJxNjruOwjAURL8mKaPr-NqJCxcBEioo2C0QnV-7NkqElRgCfP16O6QpRqOjo7FSaIZWlEHWQBpgFAijnLAKkVJRkZZgg0Mvuu1A-g0UCItfJrX4ytym0kvHkWuw1LYtb7QSBhrFgQnEGrimthylTykWtCvqIWdd1-rDkBdlUnio5HKN2w7e5rc_kd0PfwZ_He3l68zP-3bzPR4PMSPlLF10ab4bE_KZ1-0-T27Sbl58iP_GPwRcP8A

    I don’t have a /c/ directory on my site, nor did I indicate wanting to use an “email” subdomain.

    I’m not quite sure what is going on here so hopefully somebody can help!

    #266221
    shrogaijin
    Participant

    Hi, I am stuck trying to get buddypress to show everything on the activity stream, when you land on members/user, the filter says everything, but it’s not showing everything, once I change to say updates and back to everything I get mentions and wall posts from people.

    Now, I’ve been working with this but its not working, can anyone explain how to do what I’m trying to do?.

    Thanks in advance guys.

    function qs_filter( $query_string ){
    global $bp;
    if ( !$query_string ):
    $query_string =”;
    endif;
    if ( ($bp->current_component == BP_ACTIVITY_SLUG || !$bp->current_component) && !strpos($query_string, ‘type=’)):
    if ( strpos( $query_string, ‘action’ ) == 0 ):
    $types=array(
    ‘activity_update’,
    ‘friendship_accepted’,
    ‘friendship_created’,
    ‘created_group’,
    ‘joined_group’,
    ‘group_details_updated’
    );
    $type=implode(‘,’,$types);
    $query_string = ‘type=’.$type.’&action=’.$type;
    endif;
    endif;
    return $query_string;
    }

    #266218
    ceogh
    Participant

    Hi Guys

    i fresh installed wordpress as well as buddypress and i dont get the drag and drop box when i try to upload a cover image.

    Can someone please advise im using 2017 theme

    #266209
    Henry Wright
    Moderator

    Hi @giuseppecuttone

    The BuddyPress Trac ticketing system is the way to follow BuddyPress development. You can view open tickets and even contribute patches and bug reports.

    #266207
    shirleyddsn
    Participant

    UPDATE: I found this topic -> Editing BuddyPress Core Files Within Child theme That suggested that I should have a buddypress folder inside my child theme directory, and that all my copied files should go in THERE! I made the change, but I still can’t update any of the actual files. I tried my PIZZA HUT test again, but this time nothing flashed on the screen. So I guess that’s not it?

    BTW – I’m just going to keep posting updates as I go so that when someone shows up, they’ll have current information on what I’ve tried. Maybe save some time that way.

    #266206
    shirleyddsn
    Participant

    Side Note:
    I dont know if I can/should ask this here, or if it should be a different post, but I’m trying to make changes to the buddypress templates in my child theme, and it seems that I’m not allowed (?!) to make changes to the actual templates?

    For example, I was trying to make changes to cover-image-header.php just to see if I can. I wanted to add “Last Active:” just before the function that lists when the member was last active. Just to see if I could. When I refreshed the page, I thought I saw for a brief second that it did in fact say “Last Active:”, before it disappeared and just showed the original content again. To make sure it was actually my code and not a glitch, I repeated the process but replaced LAST ACTIVE with PIZZA HUT. Just to make sure it was actually me. Refresh -> Pizza Hut flashed. Yup, it was me. But why wont the code stick? Could it be my child theme document tree isn’t right? Or do I need to add some code somewhere so that changes in my child folder override files in the original buddypress folders?

    When I copied my files over, I group selected the folders in plugins/buddypress/bp-templates/bp-legacy/buddypress and copied them all over to themes/my-theme/buddypress. Am I missing a folder or something?

    Also: I figured out the concept behind add_action tacking on instructions to a do_action function. But where do the DO_ACTION functions live? And am I able to modify those? I would like to add some font-awesome icons to the front of my profile menu links the way we have here, but I can’t find the code that spits out the information.

    shirleyddsn
    Participant

    Hello, I’m working on a buddypress site, and I finally figured out how to create a child theme and a css file that I can use to customize the way my buddypress looks. I was so excited, I almost didn’t notice that my profile header went missing. After some debugging, I realized that simply copying over the bp-legacy css file into my child theme css folder is what caused the header to disappear.

    I’ve looked through old answers to try and solve the problem on my own, however, I don’t understand the code itself, how it works or even where it’s supposed to go.

    topic where I got the code -> CSS causing cover image to disappear.

    The code suggested –

    function your_theme_cover_image_css( $settings = array() ) {
        /**
         * If you are using a child theme, use bp-child-css
         * as the theme handel
         */
        $theme_handle = 'bp-parent-css';
    
        $settings['theme_handle'] = $theme_handle;
    
        /**
         * Then you'll probably also need to use your own callback function
         * @see the previous snippet
         */
         $settings['callback'] = 'bp_legacy_theme_cover_image';
    
        return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );

    Is this code up to date? Where is it even supposed to go? I tried placing it in my parent theme’s functions.php file. Am I supposed to have a functions.php file in my child theme?

    Also, in case it’s important, I’m currently using the GeneratePress free theme, but I’m likely not going to stay with it. This is currently just for testing purposes.

Viewing 25 results - 10,876 through 10,900 (of 73,985 total)
Skip to toolbar