Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 20,151 through 20,175 (of 31,072 total)
  • Author
    Search Results
  • #103479
    calvinhsu
    Participant

    @acaps2007
    What I’ve found finally:

    (It’s based on this article:
    http://easyoutsource.com/blog/how-to-code-a-custom-adminbar-in-buddypress/)

    So if you just set your adminbar to be hidden in css rather than completely disable it in the wp-config.php, you could use to call the notification menu.

    If you’ve completely disabled adminbar, then use the following code instead(it’s copied from bp-core-adminbar.php):

    <?php
    global $bp;
    
    if ( !is_user_logged_in() )
    return false;
    
    echo '<li id="bp-adminbar-notifications-menu"><a>loggedin_user->domain . '">';
    _e( 'Notifications', 'buddypress' );
    
    if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?>
    <span></span>
    <?php
    }
    
    echo '</a>';
    echo '<ul>';
    
    if ( $notifications ) {
    $counter = 0;
    for ( $i = 0; $i < count($notifications); $i++ ) {
    $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?>
    
    <li></li>
    
    <?php $counter++;
    }
    } else { ?>
    
    <li><a href=&quot;loggedin_user->domain ?>"></a></li>
    
    <?php
    }
    
    echo '</ul>';
    echo '</li>';
    ?>
    

    And as I have found out, the js effect (what you called the “mouse over” effect) is dealt automatically by bp-themes/bp-default/_inc/global.js

    In my case, I’m building a child theme of bp-default, so I don’t have to worry about js, just copy and paste css codes from bp-themes/bp-default/_inc/css/adminbar.css and adjust selectors accordingly.

    If you are not building a child theme of bp-default, then maybe you can try search in the global.js and make some copy and past.

    Good luck !

    #103478
    ScottWatson
    Member

    I am using the default theme at the moment on this particular test site.

    #103477
    Virtuali
    Participant

    Making the text-box’s shorter is a simple as shortening the CSS attribute to less than 100%, or whatever it is currently set to. but to do this and point you in the right file, I need to know if you are using the default theme, or a custom theme.

    #103474

    In reply to: Looking for BP help

    acaps2007
    Member

    Thanks for your help. For #2, my theme doesn’t let you post until you join a group. It must be specific to my theme? I’ll try to change this… Not sure how to make the auto-join thing though. Will look into it. For #3, I installed the welcome pack and it doesn’t do anything. Again, this is probably specific to my theme. I’ll have to figure out why. I am using the facelook theme by the way.

    #103461

    In reply to: Hide General Settings

    r-a-y
    Keymaster

    Add the following to your theme’s functions.php:

    `function ray_bp_remove_settings() {
    global $bp;

    // removing the existing settings tab
    bp_core_remove_nav_item( $bp->settings->slug );
    }
    add_action( ‘init’, ‘ray_bp_remove_settings’, 0 );

    function ray_bp_readd_settings() {
    global $bp;

    // add a new settings tab to use notifications as default tab
    bp_core_new_nav_item( array( ‘name’ => __(‘Settings’, ‘buddypress’), ‘slug’ => $bp->settings->slug, ‘position’ => 100, ‘show_for_displayed_user’ => false, ‘screen_function’ => ‘bp_core_screen_notification_settings’, ‘default_subnav_slug’ => ‘notifications’ ) );

    // bug in bp_core_remove_subnav_item(), we have to hack the screen function so it displays the notifications screen when you land on /settings/
    if ( $bp->current_component == $bp->settings->slug && $bp->current_action == ‘general’ )
    add_action( ‘wp’, ‘bp_core_screen_notification_settings’, 3 );

    // add back the subnav notifications tab
    $settings_link = $bp->loggedin_user->domain . $bp->settings->slug . ‘/’;

    bp_core_new_subnav_item( array( ‘name’ => __( ‘Notifications’, ‘buddypress’ ), ‘slug’ => ‘notifications’, ‘parent_url’ => $settings_link, ‘parent_slug’ => $bp->settings->slug, ‘screen_function’ => ‘bp_core_screen_notification_settings’, ‘position’ => 20, ‘user_has_access’ => bp_is_my_profile() ) );
    }
    add_action( ‘init’, ‘ray_bp_readd_settings’ );`

    Tested lightly. Encountered a few bugs, but this will work…

    #103449

    OK I deactivated all the plugins. I also deleted all the themes except for the WP default theme.

    Then I deleted the BuddyPress theme.

    I reinstalled BuddyPress, activated the BP default theme.

    No go.

    Here are the problems:

    1. No members are showing up, even though there ARE members.

    http://www.realfoodmedia.com/screengrabs/no-members.jpg

    2. Activity IS working — so you can see that there ARE members.

    http://www.realfoodmedia.com/screengrabs/activity-works.jpg

    3. I went in as realfoodmedia and testing (both members) and I requested friendship from Joe Schmo. I tried to go in as Joe Schmo to accept the friendship. I saw the notification in the top menu bar. But when I tried to go to the notification page, there were no friend requests.

    http://www.realfoodmedia.com/screengrabs/no-friendship-requests.jpg

    Then the notification disappeared in the menu.

    And, when I logged in later as realfoodmedia, and checked out Joe Schmo’s profile, it shows that I have sent a friend request. So I’m waiting for Joe to accept me but he can’t.

    #103441
    thealchemist
    Member

    Nice work! I am thoroughly impressed.

    Hugo Ashmore
    Participant

    bp-default theme – which admittedly you are not running – doesn’t use the newer WP menus system yet will do with 1.3 release.

    Sadly with BP disabled and no drop downs working it’s hard to sat what’s the cause, not really sure why someone suggested you post here, this forum supports the BP core plugin and default theme with neither in operation your issue rests with the theme you are using or some change you made; what happens if you drop back to the WP default theme twentyten?

    Hugo Ashmore
    Participant

    You need to some simple and basic trouble shooting here.

    Disable custom theme what happens? disable BP revert to clean WP what happens? etc

    #103421
    pcwriter
    Participant

    The overhaul of the free BuddyLite theme is almost ready. The default style will look much like the theme of http://BuddyLite.com
    Here’s a list of the basic theme options that will be included and accessible through a simple admin panel:

    Maximum Theme Width
    Minimum Theme Width
    Header Height
    Theme Background Image
    Theme Background Image Repeat
    Theme Background Image Behavior
    Theme Background Color
    Community Dropdown Menu Label (will be removed in BP1.3 update)
    Integrate BP-Adminbar with Main Menu
    Select ‘Global Search’ or Standard Buddypress Search
    Search Bar in Header or in Sidebar
    Sidebar Placement
    Main Sidebar Width
    Secondary Sidebar Width
    Custom CSS

    I’m also taking time to update both BuddyLite and BuddyBuilder in anticipation of the upcoming release of Buddypress 1.3.

    #103416
    Tammie Lister
    Moderator

    I’m no server expert there probably will be a few along who can assist with the server side maximising for low bandwith. However from a front end point of view I’d strongly advise you consider the following:

    1. A minimal theme in the truest sense – the less images the better, the less graphic anything.. backgrounds.. buttons.. icons – the better in this case
    2. No plugins / widgets that call external services
    3. No extra plugins / widgets that call adverts or images into the theme
    4. No slideshows or fancy scripting in the theme you choose

    All of this can make for a plainer site but it sure will benefit you if speed is the key. Also you can still have a good looking theme without the bulk.

    #103414
    Hugo Ashmore
    Participant

    Please don’t post links that are under http auth, it’s pretty pointless.

    If you do require help and this is Buddypress related then you will need to post far more detail on what you have done and versions / themes used . Third party themes though can only be tackled in a very superficial manner here, as said, theme support must be sought from the authors in the first instance.

    #103403
    Virtuali
    Participant

    Well first thing, unless it’s the buddypress default theme, we have nothing to do with other themes, this is a buddypress plugin support forum.

    From going to charizmatic.com, it looks like you don’t even have bp installed, if you need help with the theme, go to your theme’s site’s forums there.

    #103400
    roydeanjr
    Participant

    Change the permission on the theme’s folder? Is there a .htaccess file in the theme’s folder? Consider deleting it or commenting out all the lines so it has no effect.

    #103386
    Andrea Rennick
    Participant

    Just updating that the merging didn’t happen. :-/ Dev for that theme is on hold.

    #103380
    pcwriter
    Participant

    @l8knight

    Yup, big updates! Check ’em out at http://BuddyLite.com/

    I’m overhauling the BuddyLite theme to bring it up to speed with the premium BuddyBuilder framework.
    With BuddyBuilder, you can design, download, edit & share pretty much any style you like.

    #103375
    l8knight
    Member

    Any updates? I’ve been toying around with different buddypress themes but I can’t find the right fit. Keep us updated!

    #103367
    Paul Wong-Gibbs
    Keymaster

    I can help you with one of them; https://wordpress.org/extend/plugins/achievements/

    Everything else you want is out-of-the-box (other than your custom theme, of course!)

    #103349
    acaps2007
    Member

    That’s a good fix, but unfortunately my theme doesn’t display an admin bar at all. That’s why I need to re-create certain things, like notifications…

    #103335

    In reply to: A global inbox?

    Paul Wong-Gibbs
    Keymaster

    It’s something I’ve thought about quite a bit. I might try building it into a theme I am working on or perhaps see if it could be considered for an enhancement for BuddyPress 1.4. It is possible but would be a lot of work and so it is unlikely someone will give you a copy-and-paste answer :)

    #103328
    Ka Yue
    Participant

    The latest version of buddypress blank is ready for other people to use

    Some preview in here:
    http://cl.ly/121K37222p1D1G3n1r1c
    http://cl.ly/2V2y1s1I1s462n0Q030A
    http://cl.ly/1e213e211f2X1x3Z3111

    FYI, I use less.css (http://lesscss.org/) to generate css code. Mac developer should be very happy.

    #103327
    Paul Wong-Gibbs
    Keymaster

    Problem then is people can upload graphics without having an activated account. We’ve taken out the pre-activation upload avatar step out of the BP-Default 1.3 (will be shipping in BuddyPress 1.3) theme, but it’d be trivial to put back in or re-order as PJ suggests.

    #103322
    @mercime
    Participant

    My comment was based on the page source of the link you posted above in relation to revising files transferred from BP Template Pack to your active WP theme file
    == But none affect this page! If you view source you’ll se it still said the simple `

    ` ==

    When you say: “page source of any buddypress page it still has “container”” — Are the “pages” you mentioned in added on by a BP plugin but not the BP component files per se? A specific URL would be good.

    #103297
    modemlooper
    Moderator

    Thats custom html. You’ll have to edit theme files. No simple CSS.

    #103290
    modemlooper
    Moderator

    I just added this and it works
    http://dev.go-themes.com/groups/this-is-a-group/forum/topic/long-title-yup-thats-what-i-said-this-is-a-long-title/

    ul#topic-post-list li:first-child {
    font-size: 150%;
    }

Viewing 25 results - 20,151 through 20,175 (of 31,072 total)
Skip to toolbar