Search Results for 'change buddypress menu'
-
AuthorSearch Results
-
January 4, 2012 at 4:59 pm #127395
In reply to: Settings in buddypress menu links are broken
@mercime
ParticipantChange to bp-default theme. If issue is corrected, then its the premium theme that in all probability needs to be updated. Also, looks like the theme dev does provide support at TF.
January 3, 2012 at 11:40 am #127290In reply to: Change where the profile menu is shown
Tammie Lister
ModeratorFirst up what theme are you using? Are you using the default BuddyPress theme?
Depending on the answer to above if it was the default you’d be looking to move:
`
`
December 17, 2011 at 7:39 am #126518In reply to: Profile Navigation Links
inweb
MemberI’ve been searching for the answer to this for a while now.
Finally found this:
https://wordpress.org/extend/plugins/buddypress-profile-menu/screenshots/
You’ll need to change a couple of lines of code in your header – but honestly if I can do it anyone can!
Hope it helps
cheers
Stef
December 16, 2011 at 5:00 pm #126480In reply to: [Resolved] Notifications error
@mercime
ParticipantGo to admin dashboard menu BuddyPress > Components > Account Settings – should be checked to avoid errors in the meantime – Allow your users to modify their account and notification settings directly from within their profiles.
This has been fixed in trunk as a solution to a different issue but involving bp_get_settings_slug as well.
December 16, 2011 at 5:46 am #126455In reply to: don’t show non-friends actions in activity stream
yadigit
ParticipantThere is a helpful plugin called BuddyPress Profile Privacy.
It allows users to set privacy settings to their page, (such as, activity stream view, they can allow whom they want to view their activity ) along with many helpful settings.@candy2012
If your looking for only view to view friends activity on the activity page it’s very simple. Go to the activity php file. Locate the nav menu and you will see a code something like ” is selected ” changed it to the friends activity therefor it will display friends activity rather then the sitewide activity.Ps, I hope this helps. If not.. I tried.
December 4, 2011 at 11:25 pm #125581In reply to: Problems with activity page and group page
@mercime
ParticipantChange to bp-default theme and you’ll see all the Pages generated so far. Use custom menu feature and choose which links you want to be there in main navigation. https://codex.buddypress.org/extending-buddypress/how-to-set-up-your-main-site-navigation-using-the-built-in-wordpress-menus/
December 4, 2011 at 6:03 pm #125553In reply to: Cant get 1.5 site wide forum to work.
@mercime
ParticipantYou have two pages titled “Support” in your site – Support with slug Discuss and Support page with support slug – the first one a left-over from previous need to have both group and sitewide forums.
– Delete the first one, Support page with slug Discuss, then go to Trash and Delete Permanently that page.
– The title of the Page should equal name of slug. So open up the Support Page that you kept and make sure the slug below it is also support.
– Now go to admin dashboard menu BuddyPress > Pages > Directories – Discussion Forums, select the page Support and click on Save button on same line.
– Go to admin dashboard menu Settings > Permalinks and re-run it once again for good measure.
Note: if you want to rename the page to “Discussions”, don’t forget to change the slug to discussions as well, and go to BuddyPress > Pages to select the page Discussions from the dropdown.
December 2, 2011 at 7:09 pm #125450In reply to: Edit profile link leads to ‘page not found’ error?!?
@mercime
Participant@primitivpatriot re: http://www.trendkilleronline.com/members-3/TonyIsaza/profile/edit/group/1
Component page title should have the same slug i.e. “Members” page should be /members/ not /members-3/ So go to admin menu Pages > All Pages and delete pages titled “Members” then go to “Trash” and select pages titled Members and select “Delete Permanenently”
Now go to create a new Page titled Members and publish. Double-check page slug is /members/
Go to menu BuddyPress > Pages and associate Members component with the new Members page you created.
Change to bp-default theme and check that everything’s in order.December 2, 2011 at 6:59 pm #125448brotherkomrade9
Member@modemlooper
Thank you. I discovered that the theme only supports one menu and it created a single menu on top. When I tried to modify the menus already there, the change did not take place after hitting update. I guess because the default theme doesn’t allow the change. I’ll just proceed with making a child theme either way since I am not happy with the blue color of the links of the default theme.December 2, 2011 at 6:10 pm #125443brotherkomrade9
MemberHello.
I have a Buddypress site using buddypress 1.5.1, bbpress 2.0.2, and WordPress 3.2.1.
I am hosting our site on Godaddy. The main files of WordPress are sitting the site’s root directory as to avoid the “/WordPress” in our url.Anyway my issue is this: we are using the Default bp theme. I know you are supposed to create a child theme to make changes to the theme, so I am trying to find the code of file where I can add a “tab” at the top of the page under the heading along with “Home”, “Forum”, “Groups”, “Members”, that would be titled, “About”. I want there to just be an “About” tab next to the home tab. If I have to make a child theme, where would I make this change OR should I just make a stick post?
November 27, 2011 at 8:07 pm #125094In reply to: Changing log in menu-item (buddypress 1.5)
Shasta
MemberI did add that same code to the functions.php for the theme the subdomain is running — it didn’t work there.
As I continued to experiment, I thought it would be useful to disable something in the logged-in state so I could more easily see when it was working without logging in and out (to switch themes and such.) In doing so I figured out that I have to use the priority the menu-item was originally added with:
add_action( ‘bp_adminbar_menus’, ‘bp_adminbar_thisblog_menu’, 6 );
becomes:
remove_action(‘bp_adminbar_menus’, ‘bp_adminbar_thisblog_menu’, 6);
Without the “6” it won’t work. I’ve tried it with the priority I found in bp-core-buddybar.php, but since it does work in one theme and not another I’m wondering if maybe a theme can change this somewhere?
EDIT: Yup, a theme can change it … if it overwrites the original function with one with a new name but exactly the same code. *headdesk*. Searching for a unique bit of CSS I tracked down where the login code was actually being generated — not by buddypress, but not visually distinct from it either.
November 26, 2011 at 5:06 pm #125037In reply to: Tab or Menu: Settings
@mercime
ParticipantWP/BP versions? Change to bp-default theme as it should be working just fine as it is in the BuddyPress’ http://testbp.org/
November 22, 2011 at 4:27 pm #124813In reply to: How to edit the Buddypress default theme navigation?
aces
Participantfunctions.php is the same name in both the parent and child theme.
The name of any functions within should be unique!
ie: in the earlier example `function register_my_menus()` should be the only occurence of ` register_my_menus()` otherwise you might change it to `function register_dude_menus()`
November 21, 2011 at 11:50 am #124752alphonse.tan
Member@djpaul thanks for the advice but it still didn’t change… tried searching in the database but still no result.. the main menu works fine it’s the submenu of the profile that’s not working.. please see the image.. http://www.entrepnegosyo.com/entrepnegosyo.gif
thanks for the time..
November 17, 2011 at 6:44 pm #124612iblbuilder
MemberHi Andrea
Yes, I have an existing 3.2.1 multisite network. I added buddypress a week ago and am still tweaking the changes. I received support tickets from members who had signed up to just to get a username for commenting, how they could add a blog. I realised that the “my sites” menu in buddypress toolbar does not show for members without a blog.
So I cannot see a way to allow existing members without a blog to add one, which seems really odd.
November 12, 2011 at 10:37 pm #124276In reply to: Where are my sub-menus? – Graphene Theme
@mercime
Participant@junglejinge you need to wrap your code within backticks (`) the symbol between the parentheses for short blocks of code. But for large blocks like the page.php source code, use pastebin.com as aces mentioned above
I gathered additional information from WP.org forums
https://wordpress.org/support/topic/where-have-my-sub-menus-gone?replies=3
https://wordpress.org/support/topic/buddypress-theme-knocks-out-my-navigation-structure?replies=2BP compatibility process for Graphene Theme
A. After you activate the Graphene theme, install and activate BP Template Pack
B. Go to Appearance > BP Compatibility and go through the process till you click Finish. Do not disable the Template Pack’s CSs nor JS. You’ll see this in frontend [before you make the changes, the regular page and the component page]

It’s totally unlike what you have currently at http://www.meetinbradford.org/Note: this theme has many options which may or may not work with the modifications placed below. In case the following exercise does not work, please contact the graphene theme developer and refer him/her to this post.
C. Download the 6 BP folders which were transferred to your graphene theme folder in server down to your computer hard drive. Because of your theme’s HTML structure, you will need to use the first method for fixing alignment on 16 files within the folders you downloaded. Those 16 files listed here https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#tplfiles
Starting with activity/index.php open it up with text editor
At the very top, replace:
``with
``At the bottom of same activity/index.php file, replace:
``
with:
`
`Save file. Then do this for the remaining 15 files listed in link except for registration/register.php where you do the same for the top portion of the file but at the bottom of the file, replace:
`
jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});`
with:
`
jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});`
Save files and upload the six folders with modified template files to your theme folder in server.
D. Styling modifications – you’d most probably want to tweak some styles that come with bp.css. Check out style.css mods used in twenty theme as guide https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/
October 17, 2011 at 6:35 pm #123253In reply to: A Few Questions About 1.6 Dev
Boone Gorges
Keymaster> What are the differences and similarities as to how the buddybar and the WP adminbar are configured? What will be lost and what will be gained and how configurable will it be?
The BuddyBar will still be there, though it will be turned off by default in favor of the WP Admin Bar. (In BP 1.5, that’s reversed – you can enable the WP admin bar manually with
`define( ‘BP_USE_WP_ADMIN_BAR’, true );`
in wp-config.php.)BP’s WP Admin Bar implementation has:
– a logged-in user dropdown menu (links to logged-in user’s groups, activity, etc
– admin links for current group
– admin links for currently displayed user
– NotificationsThere is ‘Visit Random’ button in the current implementation, though it’s worth an enhancement request on http://trac.buddypress.org
In any case, it will be completely customizable. The BuddyBar is mostly hardcoded HTML. The WP Admin Bar is built using an easy-to-use API, making it far easier to customize to your liking. If you don’t like the search, it’s easy to remove. If you don’t like the appearance, it’s easy to modify with CSS.
> Does anyone know yet if BP 1.5 will run on WP 3.3?
It’s mostly fine. The WP Admin Bar, which changes a lot between 3.2 and 3.3, does not work all that well.
> Is there any way to create one nice big CSS for the whole BuddyPress shebang, so it won’t be so difficult to figure out the where, how, and why of formatting?
Most of bp-default’s CSS is in bp-themes/bp-default/_inc/css/default.css.
October 14, 2011 at 11:56 pm #123436In reply to: Buddypress Admin Bar/Menu Changes
igeekout
MemberSeems like every time for me! Have a great one too!
October 14, 2011 at 11:52 pm #123435In reply to: Buddypress Admin Bar/Menu Changes
@mercime
ParticipantIt happens, the answer comes up just after you post in the forums
Have a good weekend.October 14, 2011 at 6:37 pm #123414In reply to: Buddypress Admin Bar/Menu Changes
igeekout
MemberAnd of course I figured it out.
I just created a new action and placed it before do_action( ‘bp_adminbar_menus’ ); and outside of the ul.
October 14, 2011 at 5:32 pm #122274In reply to: Buddypress Admin Bar/Menu Changes
igeekout
MemberIve added bp-custom.php file and all works fine. Im just trying to wrap my head around getting the navigation to appear before the log in and sign up links.
Any ideas? Im sure its something so simple and Im just not seeing it.
September 30, 2011 at 12:57 pm #121554In reply to: How to edit and add thing to bp adminbar
Tahir Taous
Memberi tried to remove Viisit Radom Member, Random Group And Random Site from BuddyBar successfully, Here is link for you how to make changes, edit BuudyBar.
http://www.funjog.com/learnbuddypress/2011/09/30/how-to-hide-visit-random-group-members-sites-menu-from-buddypress-buddybar/
Hope this will help.September 27, 2011 at 9:43 am #121242In reply to: Am i right to think buddypress is……
Tammie Lister
ModeratorIt opens up social networking and other things besides yes. Where the menu item is though is down to the theme and also up to you if you edit files.
You do not have to change the look of your blog you’d use the template pack to allow your theme to work for BuddyPress. There are some files you’d need in your theme but the template pack solves that.
September 15, 2011 at 1:03 pm #120116In reply to: Is this possible to do? (on a multisite)
mrjarbenne
ParticipantThis is a different plugin than the one that @mercime has mentioned in his response to your query. It may be that the plugin that you are using has not been updated for the new Site Admin vs. Network Admin interface. This change occurred on WP 3.1. You will note that the plugin that you are referencing hasn’t been updated for a while, and suggests compatibility up to 3.0, but not 3.1. This has a tendency to erase menu items, because that “Network” menu you are searching for no longer exists, and has been replaced by a Network Admin Dashboard.
Try the http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/ mentioned above. You may have more luck.
September 15, 2011 at 2:09 am #120099In reply to: Sidebar is under content on Buddypress pages.
@mercime
ParticipantOpen up activity/index.php and replace at the top:
``with
``at the bottom of activity/index.php, replace the bottom part
``
with
`
`Note: You would also want to change header tag in activity/index.php from
``
with your theme’s header tag for seamless look
``
Save activity/index.php and upload to server. Then do this for the remaining 12 files as indicated in Step Three of this codex page https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
-
AuthorSearch Results