Skip to:
Content
Pages
Categories
Search
Top
Bottom

1.6 admin bar with 1.5.7

Viewing 7 replies - 1 through 7 (of 7 total)

  • Tammie Lister
    Moderator

    @karmatosed

    Not that I am aware no, it’s part of the new merging with the WordPress admin bar.


    r-a-y
    Keymaster

    @r-a-y

    Yes, it’s possible.

    Add the following code snippet in your /wp-content/plugins/bp-custom.php:

    `add_filter( ‘bp_use_wp_admin_bar’, ‘__return_true’ );`


    Tammie Lister
    Moderator

    @karmatosed

    Ooo there you go – thank you that’s one I’ll be adding to my snippet pile myself :)


    rodtrent
    Participant

    @rodtrent

    What if you don’t have a bp-custom.php in that directory path? I tried creating it, but it stuck the actual code into the header of my front page.


    9087877
    Inactive

    Did you create the file and name it bp-custom.php and put it in the plugins directory? If you have not then do that and copy and paste the below code inside that file and make sure you save it. Here is the code:
    `<?php
    // hacks and mods will go here
    add_filter( ‘bp_use_wp_admin_bar’, ‘__return_true’ );
    ?>`


    mrjarbenne
    Participant

    @mrjarbenne

    If you haven’t create a file like this before, you need to make sure you have the php tags before and after the snippet:
    `<?php
    add_filter( ‘bp_use_wp_admin_bar’, ‘__return_true’ );
    ?>`


    shemada
    Participant

    @shemada

    works =)
    thnx


    Well half works the notification area isn’t exactly the same : http://chrysmotion.com/social/

    but looks great =)

    thnx

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘1.6 admin bar with 1.5.7’ is closed to new replies.
Skip to toolbar