Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'change buddypress menu'

Viewing 25 results - 526 through 550 (of 845 total)
  • Author
    Search Results
  • @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.

    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 sticky post?

    Here is my site: http://99percentschool.com/

    #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?

    ptaylor1001
    Member

    I am running WordPress 3.2.1 and installed BuddyPress, activated it, ran the activation wizard accepting all the defaults and changed the theme to the default BuddyPress theme. All of my pages are no longer accessible or found (menu links return 404 not found error).

    I did install and activate bbPress as well to cater for site wide forums. I de-activated this but it did not help fix the issue.

    I have since de-acitvated BuddyPress but the issue remains.

    I have created new pages since deactivating BuddyPress but this has not fixed the issue either.

    Lost patience.

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

    #25628
    ambria
    Member

    So I installed the BuddyPress plugin into my current WordPress site. Options show up on the left sidebar of my admin page. Under BuddyPress/Forums I installed the Site Wide Forums (and increased my WordPress memory to avoid the fatal error). I have also gone through the process of making my current theme BuddyPress friendly. But now what?

    I get the dark admin bar at the top of my site, but no links to a forum in my nav bar. When I go to BuddyPress/Pages on my admin site, I click Save but the page does not exist when I click on View.

    There is another set of menus called Forums/Topics/Replies, and I tried adding a Forum and Topic, but nothing on my site has changed.

    Is there a tutorial for how to actually set up the plugin?

    Thanks!

    #25529
    Starborne
    Member

    Firstly, my apologies for being terrible new to all of this. I’ve looked through the forums and haven’t been able to find anyone else with this issue. I just installed BuddyPress and was able to make the necessary changes to get it functioning properly within my theme (Spectrum News by Woothemes). The only problem I still have is that the AdminBar/BuddyBar is displaying behind the standard menu bars of the theme, rather than floating above them. This makes it impossible to click on a submenu item in the Admin Bar as it opens behind the standard theme menu, until you scroll down the page so that the Admin Bar can be displayed over more “open space.” Check out my site to see what I mean: http://www.spawn-camp.com/. I’ve hunted through some of the files looking for an answer, but unfortunately I am not adept enough to figure this one out on my own. Appreciate your help!

    svema
    Member

    I have buddypress installed, using buddy press default theme 1.5.1, and budypress template pack 1.2.

    Yesterday, my website looked perfect with it’s working child theme. Due to some plugin error of mine, i had to delete another plugin via ftp this morning. When doing this my navigations menu turned vertical instead of horizontal. (see http://www.svema.info)

    I have installed backup webb files and database files but the problem is left.

    How do I change so that my navigation menu is horizontal.

    genotype
    Member

    Hi,
    I’m using WordPress 3.2.1 and BuddyPress 1.5.1. I connected the BP members component to a page called Profile. I created a custom main navigation menu in Appearance > Menus, and I included the Profile page as one of the menu items but I would like to change its default behavior: Instead of linking to the members directory I would like the link to go directly to the logged-in user’s page (which, of course, assume the user is logged in; I’m going to need to address that as well…). I’ve been spinning my wheels on this for a while, hesitant to ask because I was sure the answer had to be there somewhere, but couldn’t find it. Or perhaps I’m just being facile…

    I tried loopmodem’s user profile plugin, but that resulted in only the Profile button being shown.

    The site I’m working on is http://litecure-staging.com/clinicianscorner/

    Thanks!

    #25137
    drummergirl
    Participant

    We would like to add a dropdown menu to the main buddypress bar that is essentially a copy of a custom menu in the main blog. Can I call that specific menu and have it show up when on a member’s page or do I have to hard code the links in order to make them “global”?

    Right now putting in wp_nav_menu( array(‘menu’ => ‘top menu’ )); works fine on the main blog, but doesn’t show up when on the member blogs.

    I’d like to be able to update the main menu through the menu interface in the main blog and not mess with code each time a link is changed. Is this possible?

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

    Treebeard
    Member

    On the activity page I see members avatars, their names, a brief line or 2 of text and a few have ‘View’ links next to their activity. The ones that start with /activity/p/ (some number after it) are broken. I think these are Updates posted from the user’s profile, but the links show nothing, just blank content, there’s nothing there when you click on the link- just shows the avatar, name, and the links ‘View’ and ‘Delete’ but nothing below that.

    Anyone else have this issue? I’m afraid to Upgrade BuddyPress and the template packs, so I’m really stuck.

    1. Which version of WordPress are you running?
    – WP 3.2.1
    2. Did you install WordPress as a directory or subdomain install?
    – root directory
    3. If a directory install, is it in root or in a subdirectory?
    – root
    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    – no I don’t think so, it’s a new site
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    6. Which version of BP are you running?
    – 1.2.9
    7. Did you upgraded from a previous version of BP? If so, from which version?
    – no
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    – YES: All Multiple Accounts; BP-Album+, BP Posts on Profile, BuddyPress Activity Plus, BuddyPress Template Pack, Facebook Like Box, HeadSpace2, jQuery Mega Menu, Latest News Widget, Premium Slider, Search Everything, Share and Follow, SI CAPTCHA Anti-Spam, User Role Editor, Visitor Maps and Who’s Online, WordPress Database Backup
    9. Are you using the standard BuddyPress themes or customized themes?
    – Used the template pack, added my own headers/footers, changed nothing else
    10. Have you modified the core files in any way?
    – No
    11. Do you have any custom functions in bp-custom.php?
    – No.
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    13. Please provide a list of any errors in your server’s log files.
    – Don’t see any listed
    14. Which company provides your hosting?
    – Not sure have to get back to you (It’s a client’s website)
    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    – Linux

    #25242

    Hey folks:

    I originally posted this in creating and extending, but soon realized I probably should have posted it here.

    I have created a sidebar called “your profile” that has the member_header.php info (i.e. the avatar image, user name, when they were last active, and the activity, profile, messages, friends, groups, events, and settings links). Below is the code I have in the widget:

    ****
    `

    `

    ***

    All of the content displays properly and links work when I am in buddypress. However, when I am in the nonbuddypress part of the site, none of the user content shows up and all of the links are broken. Is there a way I can change the code so that the users information shows up when they are in buddy press AND when they are in the main (non-buddypress) part of the site?

    #25251

    Hey folks:

    I have created a sidebar called “your profile” that has the member_header.php info (i.e. the avatar image, user name, when they were last active, and the activity, profile, messages, friends, groups, events, and settings links). All of the content displays properly and links work when I am in buddypress. However, when I am in the nonbuddypress part of the site, none of the user content shows up and all of the links are broken. Is there a way I can change the code so that the users information shows up when they are in buddy press AND when they are in the main (non-buddypress) part of the site?

    #25058
    jw60610
    Member

    I just tried to install BP on a local xampp multisite WordPress installation, with no plugins activated, my .htaccess file writeable, etc.

    It does not show up in the admin menu, under “Appearance” as it says it should in the readme.txt file.

    I’m using TwentyEleven as a theme, with nothing changed. Still no show.

    Is there something I should be looking into to help solve this? Have the installation methods changed?

    Thanks very much.

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

Viewing 25 results - 526 through 550 (of 845 total)
Skip to toolbar