Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'change buddypress menu'

Viewing 25 results - 351 through 375 (of 578 total)
  • Author
    Search Results
  • #131015

    What pages are both of these on…

    (new to code)

    #131013
    RobFenech
    Participant

    1) all in the css. the default theme is all based on percentages with some max-width’s in place. If you want to change that to a fixed width, run through the code via firebug and check out where the widths are coming from and simply change them in your css.

    2) yes, this is your friend here:

    `
    <?php
    global $current_user; // Get user’s information

    get_currentuserinfo();

    $user_level=$current_user->user_level;

    $user_id=$current_user->ID;

    $user_login=$current_user->user_login;

    $user_email =$current_user->user_email;

    $user_firstname=$current_user->user_firstname;

    $user_lastname=$current_user->user_lastname;

    $home_link = get_option(‘home’);
    ?>`

    then

    `<a href="” class=”profile”>View My Profile `

    and

    `<a href="” class=”messages” title=”Messages”>Messages (10)`

    and so on…

    Zigster
    Member

    OK, I feel pretty stupid.

    To change the header menu you just go to Appearance > Menus, and create a custom Menu.

    Yay!

    #130760
    snowlas
    Participant

    Okay, this is what I did to get a register page I needed. It wasn’t a two step set up, but it got me all the information I needed in one menu.

    I don’t use the Buddy Press register page, but rather a plugin called Login Logout. This always directs to the Wordpres login page or register page if they hit join on my site. I have also hidden the admin bar to logged out users.

    I then place the Login Logout widget in a sidebar space so anyone can use it from the front page.

    I used CIMY Extra Fields plugin to add the fields to the register page. I used Custom Login to design my login page.

    You don’t want BuddyPress to handle things like age, location, unless you want to publicize that information to any other buddypress user.

    Take a look: http://www.mediabridges.info.

    @mercime
    Participant

    You need to make your theme duotive compatible with BuddyPress by installing and activating the BP Template Pack plugin. Then proceed to dashboard menu Appearance > BP Compatibility and go through the compatibility process. https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    #129991
    @mercime
    Participant

    1) Re: delete not deactivate

    You can safely delete each Group you’ve created in each Group’s admin settings.
    You can uninstall the Forums for groups in dashboard menu BuddyPress > Forums > uninstall group forums.
    You can uninstall Sitewide Forums in dashboard menu BuddyPress > Forums > uninstall sitewide forums.
    Then, go to BuddyPress > Components > remove checks for User Groups and Discussion Forums

    2) Re: if you look at my site http://www.sweepbook.com/rate-this/ you will notice the menu items are on top of each other

    – I don’t see that in your site. So it’s either you’ve changed the theme to bp-default theme or you’ve decided to use bp-default’s custom menus to organize your links.

    3) Re: The logos on my site, redirects to http://www.sweepbook.com/rate-this

    – Right now I see that you have HTML pages at domain root http://www.sweepbook.com/
    So where did you install WP/BP, in subdirectory rate-this? and the redirect is to
    redirect is to http://www.sweepbook.com/sweepbook/rate-this/ .
    WP Settings > General > Site Address URI/WordPress Address URI was changed without proper checks and this is not a BuddyPress issue at all.

    https://codex.wordpress.org/Changing_The_Site_URL and if that doesn’t help you resolve the problem, please post at https://wordpress.org/support/forum/how-to-and-troubleshooting

    #129534

    The them developer has applied the changes you suggested. If you go back to the test website http://buddypress.centennialchristianchurch.com/
    and view the only navigation menu pages, the website header and navigation bar are removed.

    #129437
    daveC87
    Member

    The custom Functions I added area as follows: (When I delete the bp-custom.php everything works fine again)

    // Setups up Type=Full avatar pics for BP-post author
    function bp_custompost_author_avatar() {
    global $post;

    if ( function_exists(‘bp_core_fetch_avatar’) ) {
    echo apply_filters( ‘bp_post_author_avatar’, bp_core_fetch_avatar( array( ‘item_id’ => $post->post_author, ‘type’ => ‘full’, ‘width’ => ’70’, ‘height’ => ’70’ ) ) );
    } else if ( function_exists(‘get_avatar’) ) {
    get_avatar();
    }
    }

    // Changes order for member profile menu items
    function bbg_change_profile_tab_order() {
    global $bp;

    $bp->bp_nav = 20;
    $bp->bp_nav = 30;
    $bp->bp_nav = 40;
    $bp->bp_nav = 50;
    $bp->bp_nav = 60;
    $bp->bp_nav = 70;
    $bp->bp_nav = 80;

    $bp->bp_nav = false;
    $bp->bp_nav = false;

    }
    add_action( ‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );*/

    // Setup the navigation
    // Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
    // and http://themekraft.com/customize-profile-and-group-menus-in-buddypress/
    function my_setup_nav() {
    global $bp;

    bp_core_new_nav_item( array(
    ‘name’ => __( ‘my adventure list’, ‘buddypress’ ),
    ‘slug’ => ‘my-adventure-list’,
    ‘position’ => 10,
    ‘screen_function’ => ‘my_adventure_list_link’,
    ‘show_for_displayed_user’ => true,
    ‘default_subnav_slug’ => ‘my-adventure-list’,
    ‘item_css_id’ => ‘my-adventure-list’
    ) );
    }

    add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );

    function my_adventure_list_title() {
    echo ‘My Adventure List’;
    }

    function my_adventure_list_content() {
    ?>


    <?php
    }

    function my_adventure_list_link () {
    add_action( ‘bp_template_title’, ‘my_adventure_list_title’ );
    add_action( ‘bp_template_content’, ‘my_adventure_list_content’ );
    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/my-adventure-list’ ) );
    }

    ?>

    #129211
    weknowmore
    Member

    This helped a lot!
    Thanks for your great help!

    I did change:
    `

    `
    in
    `

    `

    and
    `

    #129033

    @mercime,

    I’ve verified that the BP files on our BlueHost server are in agreement with the table published following step 5 of the activation wizard outline.

    Given this fact, do you suppose I might have a good BP install and simply need to work through the Genesis Child Theme tempate issues to get a good presentation outcome for BP?

    Genesis Connect claims to make changes in the way log ins are handled and reports in the Genesis Connect support forum as follows:

    **************Quote
    Actually, GC *does* offer extra functionality, in addition to the required templates I mentioned in the other thread.

    Custom registration llink to stop spammers, support for Simple Menus and Simple Sidebars, so you can have different menus and/or sidebars on the BuddyPress pages, and showing whether the user is logged in or not.

    I’ve attached an image of the Settings page for GC.

    If you do try out the BP template pack, be aware it physically places files and folders in your child theme. They *must* be removed before you use GenesisConnect, becasue they will override the plugin. ************* End of quote

    In my case,support at StudioPress believes that a re-install may not be required.

    `http://www.studiopress.com/support/showthread.php?t=89578&highlight=forum%3A+genesis+connect`

    Thanks for your further review. I’ll appreciate any further thoughts you might offer.

    Mike

    #128881
    @mercime
    Participant

    @AtlantasRealtor I would say backup database as always. Go to the lowest common and successful denominator by changing theme to Twenty Eleven and deactivating all plugins first.
    – Given that, when you activate BuddyPress, do you now see the Installation Wizard link under the admin bar?
    – If you do not see the the wizard, at this stage change to bp-default theme.
    – Do you see the BuddyPress menu at the bottom of all other dashboard menus? If so, go through each one of those panels and configure.

    – Yes, it is logical to make sure that your theme and connect plugins are compatible with latest WP and BP versions. However, I recommend not activating Genesis child theme nor Genesis Connect until you have BuddyPress working properly
    – Btw, is this a new installation or is this an upgrade from previous WP version?

    #128604
    Al B.
    Member

    @Paul Gibbs – everything is working fine. I had to change the directory in the .htaccess file. thanks for your insight.

    AL

    #128602
    Al B.
    Member

    @Paul Gibbs… changes the directory from groups to alg… now, none of the pages work… To me that’s a good thing. I was really tired of looking at page not found. Do you think I need to reinstall BP.

    @mercime
    Participant

    After you make the changes, go to dashboard menu Settings > Permalinks and Save page.

    Al B.
    Member

    @mercime
    – WP/BP versions? WP – 3.3.1 / BP – 1.5.3.1

    – Are you on Windows or Linux server? Linux Server

    – Have you changed to bp-default theme? Yes… I tested a few themes.

    – Have you deactivated plugins except BuddyPress to isolate issue/s? I have a total of 4 Plugins active… Better RSS Widget, Black Studio TinyMCE Widget, BuddyPress, Private BuddyPress… Originally I thought it was the Private BuddyPress plugin that was causing the issue. I deactivated it and the problem continued.

    Thanks for your insight.

    @mercime
    Participant

    https://codex.buddypress.org/troubleshooting/navigation-links-return-404-errors/
    – WP/BP versions?
    – Are you on Windows or Linux server?
    – Have you changed to bp-default theme?
    – Have you deactivated plugins except BuddyPress to isolate issue/s?

    #127745
    wolfmont
    Member

    You know, that’s what I thought I could do. But even though I have logged into the wp-admin dashboard many times, I have never been able to find a place where I can change (for example) the landing page. The list of Pages under the Pages submenu does not show many of the pages I need to access and edit. Here is one page I would like to be able to edit, but cannot because it is not listed in the Pages submenu:

    http://druid3realms.org/index.html

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

Viewing 25 results - 351 through 375 (of 578 total)
Skip to toolbar