Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'change buddypress menu'

Viewing 25 results - 151 through 175 (of 845 total)
  • Author
    Search Results
  • LavishDhand
    Participant

    Hi!

    My WordPress version is : 4.5.3
    My BuddyPress version is : 2.6.1.1

    I have been trying to find a way to change the names / text of at least 2 BuddyPress member profile menu items.

    I want to change ‘Friends’ to ‘Connections’ and ‘Groups’ to ‘Clubs’.

    I tried using poedit with the latest pot file from BP 2.6 and translated all occurrences of ‘Friends’ and ‘Groups’ but it is still not working.

    translations

    All translations other than profile nav items are working fine. I also tried changing the language in WordPress settings, still no avail.

    Kindly help me

    Many thanks

    Jeremy Pry
    Participant

    Under certain circumstances, there is an infinite loop inside the bp_legacy_theme_new_activity_comment() function. Specifically, when all of the secondary_item_id fields are zero, the $parent_id will continually be set to zero. An infinite loop ensues and eventually the script will time out. This causes new activity items to not display until the page is refreshed, as mentioned here: https://buddypress.org/support/topic/activity-comments-post-blank-until-refresh/.

    This error happens when attempting to add a comment to a group post. I believe this is a similar problem as the one expressed here: https://buddypress.org/support/topic/activity-comments-post-blank-until-refresh/

    For information:

    • WordPress 4.5.3
    • BuddyPress 2.6.1.1
    • Single site install in web root
    • There are indeed other plugins activated on this site. The full list is below. This site is for a client, and I’m unsure of which plugins can be safely deactivated to test.
    • We’re using a customized theme, but I have tested with the TwentySixteen theme and found the same results.
    • The core BuddyPress files have not been modified to my knowledge.
    • The site is hosted on Page.ly, but I can reproduce the problems in a local VVV install
    • The live site is http://www.lifeofdad.com/

    I believe that this may be a problem inside BuddyPress itself, as the function with the infinite loop is part of BuddyPress. The Javascript that makes the Ajax request is part of the BuddyPress Wall plugin, but from what I can tell the problem is in the aforementioned bp_legacy_theme_new_activity_comment() function.

    My specific concern is this loop:

    
    	// Load the new activity item into the $activities_template global.
    	bp_has_activities( 'display_comments=stream&hide_spam=false&show_hidden=true&include=' . $comment_id );
    
    	// Swap the current comment with the activity item we just loaded.
    	if ( isset( $activities_template->activities[0] ) ) {
    		$activities_template->activity = new stdClass();
    		$activities_template->activity->id              = $activities_template->activities[0]->item_id;
    		$activities_template->activity->current_comment = $activities_template->activities[0];
    
    		// Because the whole tree has not been loaded, we manually
    		// determine depth.
    		$depth = 1;
    		$parent_id = (int) $activities_template->activities[0]->secondary_item_id;
    		while ( $parent_id !== (int) $activities_template->activities[0]->item_id ) {
    			$depth++;
    			$p_obj = new BP_Activity_Activity( $parent_id );
    			$parent_id = (int) $p_obj->secondary_item_id;
    		}
    		$activities_template->activity->current_comment->depth = $depth;
    	}
    

    I’ve run XDebug locally to inspect the items in the loop as it is running. If some of the raw variable data is required, I can provide that.

    I have tried making some changes to the code in this loop to prevent the infinite loop from occurring. While successful in that endeavor with a few tweaks, the result is that the comment sent back through the Ajax response is the wrong comment, and a page refresh is still needed.

    I considered filing a bug in Trac, but I wasn’t certain whether something else could possibly be interfering.

    
    +--------------------------------------+--------+-----------+---------+
    | name                                 | status | update    | version |
    +--------------------------------------+--------+-----------+---------+
    | akismet                              | active | none      | 3.1.11  |
    | all-in-one-seo-pack                  | active | available | 2.3.7   |
    | appbuddy                             | active | available | 2.0.7   |
    | appcamera                            | active | available | 2.0.0   |
    | appfbconnect                         | active | none      | 2.3.0   |
    | apppresser                           | active | none      | 2.5.0   |
    | apppush                              | active | available | 2.1.0   |
    | appshare                             | active | none      | 2.1.0   |
    | appswiper                            | active | available | 2.2.1   |
    | bp-profile-search                    | active | none      | 4.5.2   |
    | buddypress                           | active | none      | 2.6.1.1 |
    | buddypress-activity-plus             | active | none      | 1.6.4   |
    | bp-moderation                        | active | none      | 0.1.7   |
    | buddypress-nocaptcha-register-box    | active | none      | 1.1.3   |
    | buddypress-toolbar                   | active | none      | 1.6.0   |
    | buddypress-wall                      | active | none      | 0.9.4   |
    | buddypress-xprofile-image-field      | active | none      | 2.0.1   |
    | category-posts                       | active | none      | 4.6.1   |
    | contact-form-7                       | active | none      | 4.4.2   |
    | contact-form-7-to-database-extension | active | none      | 2.10.20 |
    | cubell-themes-functionality          | active | none      | 3.1     |
    | envato-wordpress-toolkit             | active | none      | 1.7.3   |
    | hashbuddy                            | active | none      | 1.5.2   |
    | login-with-ajax                      | active | none      | 3.1.6   |
    | mailchimp-for-wp                     | active | none      | 3.1.11  |
    | nav-menu-roles                       | active | none      | 1.8.2   |
    | nextend-facebook-connect             | active | none      | 1.5.9   |
    | buddypress-media                     | active | none      | 4.0.4   |
    | vine-embed                           | active | none      | 0.2     |
    | wds-lod-automatic-friends            | active | none      | 0.1.0   |
    | wds-lod-base                         | active | none      | 0.1.0   |
    | wds-lod-bp                           | active | none      | 0.1.0   |
    | wds-lod-post-types                   | active | none      | 0.1.0   |
    | wds-lod-widgets                      | active | none      | 0.1.0   |
    | wordpress-importer                   | active | none      | 0.6.1   |
    +--------------------------------------+--------+-----------+---------+
    
    #256451
    danbp
    Participant

    @socialc, since 2.6 and the new Nav API, there is a much simplier possibility as the translation file to change nav item names.

    @marcono, try this; not sure you learned, below snippet is on Nav API examples i indicated previously. 😉

    function bpcodex_rename_group_tabs() {
    
        if ( ! bp_is_group() ) {
            return;
        }
       
        buddypress()->groups->nav->edit_nav( array( 'name' => __( 'Group Discussion', 'buddypress' ) ), 'forum', bp_current_item() );
    }
    add_action( 'bp_actions', 'bpcodex_rename_group_tabs' );
    
    function bpcodex_rename_profile_tabs() {
     
          buddypress()->members->nav->edit_nav( array( 'name' => __( 'My Buddy Forums', 'textdomain' ) ), 'forums' );
          buddypress()->members->nav->edit_nav( array( 'name' => __( 'My Buddy Groups', 'textdomain' ) ), 'groups' );
     
    }
    add_action( 'bp_actions', 'bpcodex_rename_profile_tabs' );
    DrHariri
    Participant

    Hi,

    I was working on an updated theme for my blog on my staging server (WPEngine) but when I moved all files & DB to the production install, the slug for any Buddypress menu link I add changed from being:
    http://educadme.staging.wpengine.com/members/admin/groups/
    To
    http://educad.me/somaia-hosam-triggered-wp_login-1x/admin/groups/

    The “somaia-hosam-triggered-wp_login-1x” slug seems to be for an achievement custom post of BadgeOS.Tried disabling BadgeOS without success.

    I’ve read somewhere that a similar issue existed in some of the older versions where urls are leading to 404 errors but not sure if it is related.

    Anyone had a similar issue?

    Thanks!

    richlublu
    Participant

    Hi all

    There is something I can’t get my head around.

    I installed the paid membership pro and buddypress plugin. I added 3 membership levels; free, gold, platinum.

    In Buddypress I associated the register page with the page called register (I am sure it’s the paid membership pro one).

    In the main menu I added Register and it points to the membership levels page of paid membership pro and then it goes to my membership level pages; so far so good.

    In posts I added a ppost that I linked to a category; the category is only for gold and platinum members. Paid membership pro does a good job when I click that post as a visitor, it shows me the message it is content for gold and platinum. But…

    Beneath this message are 2 buttons; login and register. They both point to the default login and register page in WordPress. I want this to point to membership levels page so visitors can sign up.

    How can I solve this? Maybe i am overlooking something, but after 6 hours of puzzling with WordPress i may have overlooked something

    #256080
    danbp
    Participant
    • Wondering how to use the new Navigation API ontroduced in BP 2.6 ?
    • Want to change menu item names ?
    • Change item position ?

    and more…

    Find many examples on this new codex page:

    Navigation API

    danbp
    Participant

    Merci @imath !

    The old way

    The following syntax to change the tab order is deprecated since 2.6 and will throw an error notice:

    function rt_change_profile_tab_order() {
    global $bp;
    $bp->bp_nav['profile']['position'] = 10;
    $bp->bp_nav['activity']['position'] = 20;
    }
    add_action( 'bp_setup_nav', 'rt_change_profile_tab_order', 999 );

    The new way

    Now the correct syntax to use for modifying – since 2.6 – the tabs position on the buddybar when you’re on a profile.

    This example list all BP related items who appear by default on a profile nav, in order of appearance and include also the forum tab (if you use bbPress for group forums).
    By default, activity tab comes as 1st. The snippet will move it to 4th position.

    To modify a position you simply change the numeric value.
    If you want to move only one item, you remove or comment (add // at begin of the line) the ones you don’t want to move.

    function bpex_primary_nav_tabs_position() {
    	buddypress()->members->nav->edit_nav( array( 'position' => 4,	), 'activity' 		);
    	buddypress()->members->nav->edit_nav( array( 'position' => 5, 	), 'profile' 		); 
    	buddypress()->members->nav->edit_nav( array( 'position' => 7, 	), 'notifications'	); 
    	buddypress()->members->nav->edit_nav( array( 'position' => 9,	), 'messages' 	  	);
    	buddypress()->members->nav->edit_nav( array( 'position' => 2,	), 'friends' 	  	);
    	buddypress()->members->nav->edit_nav( array( 'position' => 6,	), 'groups' 		);
    	buddypress()->members->nav->edit_nav( array( 'position' => 3, 	), 'forums' 		);
    	buddypress()->members->nav->edit_nav( array( 'position' => 1, 	), 'settings' 		);
    }
    add_action( 'bp_setup_nav', 'bpex_primary_nav_tabs_position', 999 );

    That’s it for the buddybar nav menu order on profile.

    #255255
    danbp
    Participant

    Nav items names can be changed via the language file.

    Which language do you use on your site ?
    Which language is used with BuddyPress ? (if turkish, get in touch with one of the editors here and ask for update)
    Is your theme fully translated to that language ?

    To move the User Menu sub-menu, read here.

    Check also your theme support forum, perhaps you’ll find some related topics to this WP core menu.

    #255141
    econowill
    Participant

    i experienced exactly same issue with writer.
    only activation mail not work, others do. password change, etc…

    try to this
    admin panel – setup – buddypress
    setup is including permal link menu. i dont know exactly what it in english.

    and click restore email setup. and i solved.
    good luck!

    had_hc
    Participant

    So now that there’s this new Navigation API, the nav item and the subnav item that i’ve hidden before are now visible again after updating to latest Buddypress 2.6.
    As a reference, here’s how I did this before;

    function my_setup_nav() {
          global $bp;
    	$bp->bp_nav['vendor-dashboard']['position'] = 7;
    	$bp->bp_nav['my-store']['position'] = 9;
    	$bp->bp_nav['shopping']['position'] = 8;
    	$bp->bp_nav['follow-store']['position'] = 10;
    
    	// Remove a menu item
            $bp->bp_nav['events'] = false;
            $bp->bp_options_nav['shopping']['view_order']= false;
    }
    add_action( 'bp_setup_nav', 'my_setup_nav', 1000 );

    The repositioning still works, but as said above, removing the subnav doesn’t work anymore. I’m quite a noob in programming to be honest. I’ve looked at the page linked by the changelog but I have no idea how to do it with the ‘new method’. Can anybody help a noob here please? Thanks in advance!

    nasocal
    Participant

    WordPress 4.2.2 running Vantage Premium theme

    BuddyPress Version 2.5.3

    Website is WaxUnion.com

    I haven’t been able to get buddypress to work now for awhile.

    Everything was working great and just one day it stopped working.

    I’m pretty sure I didn’t make any updates or anything that caused the change.

    The links are under the social link in the menu.

    I cant access profiles, members, activity stream, or the register page it all just loops back to the homepage with page title at the top of screen. If i turn off buddypress then the register page works fine.

    Since the problem I have updated buddypress, turned off all other plugins to check conflict, and double checked all settings… nothing has seemed to help.

    I have read that possibly there is a database / file problem maybe where maybe certain files are not in the right spot in the control panel / database and that could case this problem, but I’m not sure.

    I could really use some help or maybe pointed in the right direction … Thanks

    Ben Riga
    Participant

    I’ve been trying to customize the member pages for the site I’m working on by removing the member nav menu on the left. I was able to do that by removing the <div id=”item-nav”> from bp-templates\bp-legacy\buddypress\members\single\home.php

    The works fine to remove the left hand menu but then leaves a 1px border-left on the item-body div (looks like it’s on a media query for when the width is over 783). I’m currently using the Twenty Fourteen theme.

    I was able to customize by copying the entire css file over and removing that style but doesn’t seem right. If other styles are changed in future BP updates I’ll never see those updates, right? Isn’t there a way to customize by overriding just that one style?

    This is the style that was causing me issues:

    /*  Remove the line from the left hand side of the Member Navigation Menu  */	
    /*	#buddypress #item-body {
    		border-left: 1px solid #bebebe;
    	}  */

    I’d appreciate any help or nudge in the right direction.

    Thanks,
    Ben

    kalico
    Participant

    Note: All plugins and WP are up to date as of this writing. The site can be found at http://nrocnetwork.org/community. However, that is the only part of the site that is public. There are several sites in the multisite that are in development.

    I have a multisite with BuddyPress (network activated, but rooted in a subsite by a define in wp-config) and I have Commons in a Box (CBOX), which includes bbPress. Unfortunately, I have made the mistake of activating and deactivating CBOX, and I think that some settings got changed in between. I’m seeing some very odd behavior.

    My first clue to this problem was a “disappearing” forum. Someone made a private group, associated a forum with it, posted in it….then it disappeared. Any member of the group (including admin, mod, and participant) would see a message saying “This group does not have a forum.”

    As superadmin I could visit the group, click on the forum link, and it would display just fine. But no one else could. This made me think it was a permissions problem, but all efforts in that direction failed to resolve the issue.

    So I looked around more, and eventually discovered a lot of weird behavior (will explain below), in particular, the forum would not “stick” to the group through any means of association. This only happens with private groups/forums.

    I ran all the forum-fixing tools in Tools >> Forums (individually, not at once), but to no avail. In fact, the one for reassociating groups and forums says “0 forums, 0 groups” etc. even though there should be 11+ groups and like 15 forums.

    The forum/group association in the dropdown menu in admin does not show all the possible forums I should see. i.e., if I go to Network Admin >> Groups >> Some Private Group, and check for an associated forum, the “Yes, I want a forum” box is checked, but the forum that should be associated either is not associated, OR it’s not even in the list at all. If I make a private forum public, it will reappear in the dropdown menu.

    However, I was unable to make the association “stick” when setting the forum from the admin side. Eventually I did it from the front end, on the Group >> Settings >> Forum page, where there is a dropdown to select which forum to associate with the group. But it should have it’s own private forum from when it was created….it should not have to be a public forum.

    Some older private groups have lost their connection with their forums in the same way — their members cannot see the forum, they just see “This group does not have a forum.” And the other abnormalities exist as well.

    I noticed that several subsites have similar lists of forums/topics/replies, but the actual count of items varies for each subsite.

    Forum URLs (permalinks) vary, depending on which subsite I am on when viewing the Forums. Some have a /forums/ slug in them, some do not. Some share a slug with the subsite I am viewing, while others have the slug of the site where they *should* live.

    I’m confused and frustrated. :[

    Ideally, all forums/topics/replies should live on one subsite (the same one where BuddyPress is rooted). Private forums should be associated with their private groups, and private groups’ forums should be visible to their members. Y’know….obvious stuff like that.

    I really suspect that my sites/forums/groups and their associations have gotten whacked out by something I did, but I have no idea how to fix it. I feel like if bbPress were active in just the subsite where BuddyPress is rooted, it might work right….but I don’t know how to get there from here (without breaking everything, or losing posts). CBOX is a network-only plugin, and that may be partly responsible for this mess….it was active a few months ago, then I disabled it for a while, then re-enabled it. I suspect some groups/forums may have been made in the intervening time, and did not properly associate.

    I am open to any suggestions for how I can get this all back to how it should be — with or without CBOX. I only want one site to have forums and groups. They don’t need to be everywhere.

    CBOX as a plugin manager can be eliminated — I am not married to the additional functionality it provides. In fact, I already have the CBOX plugins “freed up” for administrative maintenance outside of the CBOX gui by a define in wp-config, so I am not locked in there.

    Any help would be greatly appreciated! 🙂

    cesasol
    Participant

    Hi, I’m working on a project where I have to populate the contents of a page using custom post types and taxonomies with members of buddypress.
    Members fill out a field check boxes that match the terms of taxonomy to be used, then I have to fill posts with members that meet at least one match box checked with taxonomy term and then add the user to post.

    Navigation would be:
    User enters the “services” in the menu.
    Then see a list of services in card format
    Clicking has to display the “post” service with a short description and down members offering such services with a link to their profiles buddypress.

    Members will have the following experience:
    After registering as a special type of user they are activated the profile field “Professionals”, which, along with other fields will be the field of “treatments” that will check boxes. As save their changes, for example, they marked the “facial radiofrequency” box, your profile will appear in the services that have the taxonomy term “facial radiofrequency”

    It can be done in each post or maybe making a specific template with one using variables, and enter the custom loop within the loop the post after <php the_content (); ?> And before endwhile.

    The problem is that the loop is not done, and after searching I found I was developing #5839 but I could find no documentation.

    Thanks in advance.
    Cesasol

    dipankarbanerjee
    Participant

    I am using a sliding/drawer div, where I have displayed the standard navigation items of BuddyPress, with the following

    <?php bp_get_displayed_user_nav(); ?>
    <?php do_action( ‘bp_member_options_nav’ ); ?>

    When a member select ‘Group’ and then clicks on a specific group name, I would like to change my default menu items to a standard Group navigation items, which we usually get on a default theme.

    My slide/drawer menu has been declared on header.php

    Any suggestion/advise would be highly appreciated.

    Thanks!

    #253644
    ykaldes
    Participant

    Hi,
    I’m trying to find out how I can change the page title “members”. I tried to do it in pages, menu, and buddyPress settings but no success. Thanks.

    jl3nz
    Participant

    I am having an issue with my Buddypress Notification Settings not saving. When you change any options from “Yes” to “No” and click the “Save” button at the bottom of the page, the page reloads but the changed options don’t save.

    WP version 4.4.1
    Theme PageLines Framework 2.4.6
    PHP version 5.4.13
    bbPress version 2.5.8-5815
    site url http://www.wpfilm.com
    Active Plugins Name and Version
    – p1 Gravity Forms 1.9.15
    – p2 Add Shortcodes Actions And Filters 2.0.3
    – p3 Akismet 3.1.8
    – p4 BAW Multipass for Protected Pages 1.4
    – p5 bbP Toolkit 1.0.6
    – p6 bbPress 2.5.8
    – p7 Better Notifications for WordPress 1.3.9.5
    – p8 BuddyPress Username Changer 1.1
    – p9 BuddyPress 2.4.3
    – p10 CloudFlare 1.3.20
    – p11 Display Categories Widget 2.0
    – p12 Disqus Comment System 2.84
    – p13 Gravity Forms ActiveCampaign Add-On 1.3.1
    – p14 Gravity Forms Authorize.Net Add-On 2.1.1
    – p15 Gravity Forms MailChimp Add-On 3.7.1
    – p16 Gravity Forms PayPal Standard Add-On 2.6
    – p17 Gravity Forms Survey Add-On 2.6
    – p18 Like Button Voting & Rating 2.1.9
    – p19 MemberPress Active Campaign 1.0.4
    – p20 MemberPress AWS 1.2.5
    – p21 MemberPress Developer Tools 1.0.2
    – p22 MemberPress Importer 1.2.3
    – p23 MemberPress to VHX.tv 1.0
    – p24 MemberPress WP Films Addons 1.0
    – p25 MemberPress Developer Edition 1.2.7
    – p26 Nav Menu Roles 1.7.7
    – p27 Open Graph Metabox 1.4
    – p28 bbPress for PageLines 2.0.2
    – p29 Recent Posts Widget Extended 0.9.9.5
    – p30 Shortcodes in Menus 3.1
    – p31 Stream 3.0.5
    – p32 Update Control 1.5
    – p33 UpdraftPlus – Backup/Restore 1.11.28
    – p34 WP Better Emails 0.3

    #252899
    bogski
    Participant

    Hello!

    I have a WordPress website running BuddyPress and BBPress and they are working great. However I have one small question.

    Currently, when my users log in they are taken to their profile page and presented with the ‘Forums’ tab as default. Now from what I can tell, this will display all forums that they have posted in or are subscribed to.

    What I would like to do when they land on this page is display a list of all forums they have access too. Like the default forums page (mysite.com/forums) and not their most recent activity.

    The reason for this is the forums are all private or hidden depending on a users group. So I would like to present them the forums listing first, without having to put a link in my main Nav Menu to the forums.

    Is this possible? I thought it might be possible with something like define('BP_DEFAULT_COMPONENT'); and i’ve found a way to change the groups and members landing page to display forums as a default using similar code.

    EDIT:

    Also, is there a document that contains all the usable functions/hooks that I can download such a spreadsheet or something? just to save time trying to find stuff again. If not I will just add the them into one myself as I go along.

    Mike
    Participant

    I got this working in the end… I had to change the first letter of ‘Primary’ menu to lowercase! Is there code I can add to not display ‘0’ after messages, for instance if there are no new messages, then ‘0’ is not displayed?

    I’ve got another plugin for Buddypress called ‘Compliments’ which also has a notification counter, is there a way to clear the reset counter of those notifications, once a person has viewed that particular page?

    Many thanks.

    #251532
    jrytesting
    Participant

    Hello, I had this same problem and this is how I fixed it. It was mentioned in this thread
    (https://buddypress.org/support/topic/bad-link-to-profile-edit/)
    that there may be a problem in the database table “wp_bp_xprofile_groups”. For some reason the first item id there is not “1” but something else. As you change the id to 1, everything works. Then it also shows the Profile details side Name field (required) in the registration page.

    Also there was a problem to edit profile, it went to “Page not found”. This gets fixed also now, now you can edit the fields.

    This seems to be some kind of bug in the installing process in some circumstances. I tested this by removing the BuddyPress and also deleting the BuddyPress database tables. They must be deleted manually, they wont get out by deleting the plugin.

    New installation put the first id number to “3” to “wp_bp_xprofile_groups” table. Even the group_id in the table “wp_bp_xprofile_fields” was “1” (after I activated some components in BuddyPress menu, before that the tables were empty) for the first field item. So now the field item and the group item never matched.

    Hopefully this helps someone. It seems that there are a lot of discussion of this problem, and this is a very annoying problem if you are really using BuddyPress.

    Basically the registering had a workaround for example by using plugin “Theme my login”. The registering also looks simpler as there is not that “extra” name field. It is however unknown how BuddyPress works without that name field. Well, but perhaps that is an another story.

    #251450
    simbaclaws
    Participant

    Hey everyone,
    I’m trying to adjust the admin bar for logged out users so that there is no register and login button and that the anonymous user profile shows up with register, logout, password etc.

    I’ve been searching for a while now and haven’t been able to find out how to do it.
    I’ve tried doing it through my functions.php by using $wp_admin_bar->remove_menu and $wp_admin_bar->add_menu. I’ve even put a script in to check what the node ID’s were of my menu’s in order to be able to remove or add them.

    I’ve seen previous posts where people said that this had something to do with either your theme or your plugins, so I disabled all plugins except buddypress and enabled twenty fifteen theme to see if it changed anything. Which it did not.
    I’m using wordpress 4.4.2 with buddypress 2.5.1 on my localhost machine.

    I’ve also looked at the following page:

    Modifying the Toolbar

    But it seems like this is a deprecated-guide?
    Does anyone know of the current way to make this work?
    I basically want the same wp-admin-bar-my-account to work for logged out users. Which is displayed as node ID: my-account.

    I have already set my site to allow users to register and I have also made sure that logged out users are capable of seeing the bar in my buddypress settings. Which works because I can see the bar with a login and register button on it but not with the my-account profile on it. And I can also use the registration form for new users.

    Does anyone have any ideas on how I can make this work?

    #251316
    sharmavishal
    Participant

    Hello

    has anything changed from BP 2.4 onwards as to how buddypress handles/creates menus?

    i used to successfully use Ron’s wp replicator plugin to create replica of WP+BP multisite.

    from BP 2.4 onwards when i replicate the site the menus dont get copied. strangely if i try to create a menu manually it doesnt allow. no menu is created manually in short on the replicated website..

    Even if i try to import menu it gives the error “Menu item skipped due to invalid menu slug”

    Does BuddyPress add menu items to one menu by default or automatically?

    Is it possible that BP replaces the contents of the menu with it’s own links (the main BP pages)??? If the pages weren’t assigned the original menu items it might still be deleted but no new items are added to it???

    any help/pointers is highly appreciated.

    Thanks in advance

    #251228
    richdal
    Participant

    WordPress 4.4.2
    BuddyPress 2.5.1

    Not sure how to change up the form where users would update their extended profile.

    I was able to setup a custom registration page by copying the source file to here and making my changes…

    /wp-content/themes/genbu-child/buddypress/members/register.php

    On the user Profile – Edit page I’m seeing the different fields I wanted to include, but wanted to add some extra description to the three birth date menus that show up. Is there a file similar to register.php I could copy to my child theme and fix up the HTML how I want it?

    #250340
    Sebastian
    Participant

    @shanebp: ok,
    i changed “bp_moderate” to “create_users” at line 29 in compose.php
    as I set this for the trainer role too:

    <?php if ( bp_current_user_can( 'create_users' ) ) : ?>
    		<p><label for="send-notice"><input type="checkbox" id="send-notice" name="send-notice" value="1" /> <?php _e( "This is a notice to all users.", "buddypress" ); ?></label></p>
    	<?php endif; ?>

    The changes works and the option field “send a notice to all users” displays also for trainers with capability “create_users”.

    BUT they can’t send notices at all/ still miss the capability and also don’t have the “notices” menu in the buddypress profil.
    An Error Message appears when they try to send message as site wide notice: “Notice was not created. Please try again.”

    What else do I have to change? I looked at other php files around there but didn’t find a solution. Can you help me out? Thx!

    #249708
    raj2293
    Participant

    how i can to add new tab in buddypress Group menu item.
    Which File can change and which content i add into my plugin files.
    plz help to solve this.

Viewing 25 results - 151 through 175 (of 845 total)
Skip to toolbar