Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'change buddypress menu'

Viewing 25 results - 301 through 325 (of 511 total)
  • Author
    Search Results
  • #127395
    @mercime
    Participant

    Change 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.

    #127290
    Tammie Lister
    Moderator

    First 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:

    `

    `

    #126518
    inweb
    Member

    I’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

    #126480
    @mercime
    Participant

    Go 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.

    #126455
    yadigit
    Participant

    There 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.

    #125581
    @mercime
    Participant

    Change 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/

    #125553
    @mercime
    Participant

    You 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.

    #125450
    @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.

    @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.

    #125443

    Hello.

    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?

    #125094
    Shasta
    Member

    I 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.

    #125037

    In reply to: Tab or Menu: Settings

    @mercime
    Participant

    WP/BP versions? Change to bp-default theme as it should be working just fine as it is in the BuddyPress’ http://testbp.org/

    #124813
    aces
    Participant

    functions.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()`

    #124752
    alphonse.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.. :)

    iblbuilder
    Member

    Hi 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.

    #124276
    @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=2

    BP 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/

    #123253
    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
    – Notifications

    There 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.

    #123436
    igeekout
    Member

    Seems like every time for me! Have a great one too!

    #123435
    @mercime
    Participant

    It happens, the answer comes up just after you post in the forums :-) Have a good weekend.

    #123414
    igeekout
    Member

    And 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.

    #122274
    igeekout
    Member

    Ive 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.

    #121554
    Tahir Taous
    Member

    i 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.

    #121242
    Tammie Lister
    Moderator

    It 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.

    https://wordpress.org/extend/plugins/bp-template-pack/

    #120116
    mrjarbenne
    Participant

    This 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.

    #120099
    @mercime
    Participant

    Open 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/

Viewing 25 results - 301 through 325 (of 511 total)
Skip to toolbar