Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 14,051 through 14,075 (of 69,016 total)
  • Author
    Search Results
  • #234495

    In reply to: bbPress Forums

    eVersatile
    Participant

    I have found the solution within /wp-content/plugins/bbpress/includes/extend/buddypress/groups.php

    #234491
    carolaword
    Participant

    Great! I was going to give you this link, it’s too late, but maybe someone else needs everystep:

    Customizing Labels, Messages, and URLs

    #234488
    David
    Participant

    I looked over this page and checked everything. Signups are allowed. Comments are allowed. My site still does not allow anyone to Register or Activate BuddyPress forum accounts. There are currently no other plugins enabled. Can anyone please look at the site and let me know what is going on if you have a few minutes? I understand if you can’t help and appreciate the time but I just want to try to troubleshoot what’s going on as something is missing and it’s either something on my end that I can’t find or BP is just not working with this theme or something else.

    It is not possible for me to associate pages with the settings shown in the screenshot above. I’ve tried to do this at least five times and it simply will not save the changes no matter. I’ve checked the settings. The pages exist, there are slashes, but it’s still dead.

    It’s chubbybunny.info

    #234487

    In reply to: Updating issue

    r-a-y
    Keymaster

    You’re doing something wrong because this is working for me:

    function my_enqueue_styles() {
    	if ( ! function_exists( 'is_buddypress' ) ) {
    		return;
    	}
    
    	if ( bp_is_user() || bp_is_current_component( 'groups' ) ) {
    		wp_enqueue_style( 'my-style', get_template_directory_uri() . '/test.css' );
    	}
    }
    add_action( 'wp_enqueue_scripts', 'my_enqueue_styles' );

    Stylesheet is loaded on member profile pages and group pages only.

    #234485
    r-a-y
    Keymaster
    #234476
    Henry Wright
    Moderator

    Do you know where that text comes from? I can’t find it anywhere in BuddyPress or in WordPress cores.

    #234474
    Mathieu Viet
    Moderator

    Hi @aglekis

    I can imagine why setting the Members directory page as a Parent of the groups directory page is not working: the built url must Be in this case site.url/members/groups and then BuddyPress is looking for a member having the username “groups” and do not find it ๐Ÿ™‚

    Instead of using the Parent attribute, you can use wp_nav_menus ๐Ÿ˜‰

    #234462
    djsteveb
    Participant

    @jessiewordpress – might want to check out either “good question” (change default question / answers!) – or ‘buddypress humanity’ as well. They have made a huge impact on the spam registration issues we used to deal with.

    #234460
    ksimpson1986
    Participant

    I figured it out! i had to use poedit, then i had to manually create the en_US file and place it in a manually created language folder in the wp-content folder. thank you! with the new versions, you have to go to your buddypress folder under plugins, make a copy of the buddypress.pot file, rename it and edit it in poedit. manually create the language folder, and place it in there. the rest is automatic!

    #234457
    jessiewordpress
    Participant

    If that plugin doesn’t work, does Buddypress allow us to change this notice you receive after clicking on the activation email link:

    Youโ€™re almost there! Simply enter your activation code below and weโ€™ll take care of the rest.

    (there was no activation code needed, so Iโ€™d like to edit this content out)

    EscapandoDelSistema
    Participant

    i tried to do that but its giving me the error with random plugins, sometimes it shows after activating buddypress and then it shows after i activate another one

    #234447
    carolaword
    Participant

    I think I remember when I isntalled Buddypress it created a language folder at wp-content/languages, let me know if you can find it there

    #234446
    adriandegar
    Participant

    Wow, I found the answer by renaming by members page in the Buddypress settings! I feel incredibly dumb.

    #234430
    r-a-y
    Keymaster

    The issue that the OP is referring to is member pagination.

    I can confirm that this is fixed in BP 2.2.0.

    danbp’s issue is related to pagination on notification pages:
    https://buddypress.trac.wordpress.org/ticket/6205

    djsteveb
    Participant

    @escapandodelsistema – so you disable all plugins, then enable buddypress. Open your site in a new tab, it works… then go to your first tab and enable your first plugin “Add From Server” – then go to your other open tab, refresh page.. do this for each plugin until you find the one that is causing the 500 error.

    you may find it is one plugin that is the issue, or you may find that it is a combo of three plugins that cause the problem. Odds are you are going to have to hunt down the other problem plugin author for help.

    #234425
    r-a-y
    Keymaster

    What version of BuddyPress are you using? This should be fixed in 2.2.0.

    #234417
    ksimpson1986
    Participant

    i downloaded the poedit software, then i did a full search in both the buddypress plugin folder, and my theme folder. nothing called buddypress-en_US.po pulled up…:-/ am i not looking in the right place?

    #234416
    shanebp
    Moderator

    You can’t pass an array of ids in that manner. Pass a csv string.
    For example, assuming $custom_ids is an array:

    $gsxrgeek = 'include=' . implode(",", $custom_ids);
    $gsxrgeek .= '&type=alphabetical';
    if ( bp_has_members( $gsxrgeek ) ) //etc

    More info.

    #234414
    r-a-y
    Keymaster

    @hnla – It’s related to this changeset:
    https://buddypress.trac.wordpress.org/changeset/9322

    This issue was also noted on the following ticket about buddypress.org:
    https://buddypress.trac.wordpress.org/ticket/6108#comment:2

    In BP 2.2, I tested is_singular() on BP pages and it returns true. bp_is_user() also works as expected.

    If there are any other issues outside of is_page(), please let me know specifically what the issues are, as I do want to address these.

    #234406
    carolaword
    Participant

    you need to download poedit software, and look for the language file buddypress-en_US.po open it and use it as you are translating the plugin. Use the search tool for “Groups” and everytime it turns out replace that word for “Circles” and upload that file again.
    That’s it.

    #234404
    shanebp
    Moderator

    Take a look at this file:
    buddypress\bp-messages\bp-messages-actions.php
    In function messages_new_message there is this hook:
    do_action_ref_array( 'messages_message_sent', array( &$message ) );

    #234393
    Gregoire Noyelle
    Participant

    Hello imath ๐Ÿ™‚
    Thanks for your answer.

    When the directory page for the group is a child of another page then you get a 404, is that correct ?

    Yes that’s right.

    And for the parent, I chose the BuddyPress Members page (Membres in french). Perharps that’s the problem

    #234392
    gatelli
    Participant

    I’m sorry I’m not using bbpress, but BUDDYPRESS forum.

    #234388

    In reply to: Custom Profile menu

    barodscheff
    Participant

    Thank you but your solution is outdated. I’ve found it also while searching.
    And thats the big problem with buddypress. There was an update about one year ago and everything changed. So nearly all common customizations do not work any more.

    Thats the reason why the plugin ‘buddypress custom profile menu’ also doesn’t function anymore.

    Fortunately I found the solution. It looks like this:

    function profile_new_nav_item() {
    
    		global $bp;
    
    		bp_core_new_nav_item(
    			array(
    				'name'                => 'Contact Athlete',
    				'slug'                => 'contact_athlete',
    				'default_subnav_slug' => 'extra_sub_tab',
    				'position'            => 160,
    				'screen_function'     => 'view_manage_tab_main'
    			)
    		);
    	}
    
    	add_action( 'bp_setup_nav', 'profile_new_nav_item', 10 );
    	
    	// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    
    	function view_manage_tab_main() {
    		add_action( 'bp_template_content', 'bp_template_content_main_function' );
    		bp_core_load_template( 'template_content' );
    	}
    
    	function bp_template_content_main_function() {
    		if ( ! is_user_logged_in() ) {
    			wp_login_form( array( 'echo' => true ) );
    		}
    	}
    	
    	// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    
    	function profile_new_subnav_item() {
    		
    		global $bp;
    
    		bp_core_new_subnav_item( 
    			array(
    				'name'            => 'Extra Sub Tab',
    				'slug'            => 'extra_sub_tab',
    				'parent_url'      => $bp->loggedin_user->domain . $bp->bp_nav[ 'contact_athlete' ][ 'slug' ] . '/',
    				'parent_slug'     => $bp->bp_nav[ 'contact_athlete' ][ 'slug' ],
    				'position'        => 10,
    				'screen_function' => 'view_manage_sub_tab_main'
    			) 
    		);
    	}
    	
    	// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    
    	add_action( 'bp_setup_nav', 'profile_new_subnav_item', 10 );
    
    	function view_manage_sub_tab_main() {
    		add_action( 'bp_template_content', 'bp_template_content_sub_function' );
    		bp_core_load_template( 'template_content' );
    	}
    
    	function bp_template_content_sub_function() {
    		if ( is_user_logged_in() ) {
    			bp_get_template_part('my-contact-form');
    		} else {
    			wp_login_form( array( 'echo' => true ) );
    		}
    	}

    I hope it helps anyone.

    Finally I’d like to say that I have never seen such a bad documentation in development as in buddypress. I know buddypress is free but WordPress is free too and they have a great doc.

    rosyteddy
    Participant

    To answer my own question this can be done at the site of site creation. However I do not know how to toggle or change it later – https://buddypress.org/support/topic/how-to-toggle-site-visibilty-in-the-activity-stream/

Viewing 25 results - 14,051 through 14,075 (of 69,016 total)
Skip to toolbar