Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 22,051 through 22,075 (of 32,562 total)
  • Author
    Search Results
  • #100254
    Virtuali
    Participant

    Are you using default theme??

    Custom theme?

    #100242
    José M. Villar
    Participant

    Yes, but I think WP framework will be FREE, wereas the other theme frameworks you mentioned are not

    At least Hybrid has been free until now.

    Please note I am not complaining, just stating the facts.

    #100240
    Paul Wong-Gibbs
    Keymaster

    Also announced today, Brian Gardner (Genesis) has announced that Andrea and Ron Rennick’s long-standing support for BuddyPress (GenesisBuddy / premiumbpthemes) will officially be moving to StudioPress next week. (source)

    WooThemes have been working on BuddyPress support for their Canvas theme (as far as I know) for sometime.

    This is just the bigger names. There are lots of smaller theme shops and designers releasing BuddyPress themes. The future’s bright, the future’s orange ;)

    #100230
    Steve Bruner
    Participant

    add the following in your child theme’s functions.php file;

    `add_filter( ‘bp_search_form_enabled’, false );`

    bye, bye, search box!

    #100225
    @mercime
    Participant

    Since you’ve enabled adminbar even for logged out users, you can add one line – padding-top: 25px; – to your active theme’s (redbel) style.css under body:
    `body {
    ….

    padding-top: 25px;
    }`

    #100219
    Paul Wong-Gibbs
    Keymaster

    Template Pack just helps you out by bringing in the bare minimum CSS and Javascript required for BuddyPress. It’s impossible for us to make all the theme features of BuddyPress integrate seamlessly into everyone’s website automatically. You’ll need to add custom CSS.

    #100209
    Ekine
    Participant

    Blog comments not showing within the activity stream might be a bug referring to blocking search engines.
    But have you noticed that there is a huge gap when replying to an activity? See screesnhot: http://i56.tinypic.com/2iayj6d.png

    #100205
    Ekine
    Participant

    I have just noticed that blog comments don’t show within the activity stream.

    #100202
    James
    Participant

    @brentcee234

    hi,
    this solution works for child theme.
    you add code of r-a-y to your style.css and all works like a charm.
    (check topics on how to create child theme).

    #100183

    In reply to: Admin Bar Disapears

    WRAWRWAWR
    Participant

    I’m having the same issue with the Jooc theme. Admin bar is loading fine in the default theme, but as soon as Jooc is activated it disappears.

    I’m a coding noob and tried deleting this code from functions.php in the jooc theme folder to no avail.

    `function arit_remove_buddypress_admin_bar_install() {}
    function arit_remove_buddypress_admin_bar_init() {
    if ( function_exists(‘bp_core_admin_bar’) ) remove_action( ‘wp_footer’, ‘bp_core_admin_bar’, 8 );
    if ( function_exists(‘bp_core_admin_bar_css’) ) {
    remove_action( ‘wp_head’, ‘bp_core_admin_bar_css’, 1 ); }
    if ( function_exists(‘bp_core_add_admin_css’) ) remove_action( ‘admin_menu’, ‘bp_core_add_admin_css’ ); }
    function arit_remove_buddypress_admin_bar_uninstall() {}

    register_activation_hook( __FILE__, ‘arit_remove_buddypress_admin_bar_install’ );
    add_action( ‘init’, ‘arit_remove_buddypress_admin_bar_init’ );
    register_deactivation_hook( __FILE__, ‘arit_remove_buddypress_admin_bar_uninstall’ );`

    Also tried deleting this from style.css:

    `padding-top: 0 !important; /* Remove the top padding space for the admin bar in this theme */`

    That also did not work. I would like to move the admin bar to the bottom instead of eliminating this. Any word from the designer or any thoughts? Thanks…

    #100182
    techguy
    Participant

    Modify header.php in your theme. I think it’s wp_list_pages or something like that which lists the pages. Use is_user_logged_in() for the if statement to choose when to display the pages.

    #100163
    Ekine
    Participant

    @modemlooper Sounds great. (:
    Two more questions…
    When updating the theme, how can we maintain custom css changes without editing custom.css after updating?
    Is it possible to show the ad code (sidebar.php) only on certain wordpress pages. Because I would like to hide this ad code on most buddypress related sites.

    One more suggestion, how about adding ajax pagination for latest blog posts and or maybe ^^ make ’em sortable by date, most hits and most comments. (:

    See screenshot: http://i56.tinypic.com/9bazye.png

    #100158
    modemlooper
    Moderator

    wp-content/plugins/buddypress/bp-themes/bp-default/activity/

    #100142
    piclours
    Member

    ok, will do, thanks.

    #100141
    Paul Wong-Gibbs
    Keymaster

    I think you need to make a ticket for this on the WordPress bug trac system as it sounds like it is a core issue.

    #100127
    @mercime
    Participant

    – Copy over the header.php from bp-default theme to your child theme.
    – Open header.php and add class to the li’s of default BP components starting from line 47 on header.php

    <li class="icon-home">
    <li class="icon-activity">
    <li class="icon-members">
    <li class="icon-groups">
    <li class="icon-forums">

    You would have to ask plugin authors of “Links” and “Achievements” on how to generate addition class for styling hook.
    – after you’re done, save and upload to your child theme folder in server
    – in style.css add background image to li.icon-members, li.icon–groups, etc.

    #100118
    r-a-y
    Keymaster

    @ewebber – Just checked. Yeah the message gets escaped, so you can’t add HTML by default.

    If you want to add HTML, you’ll have to remove how BP renders the message, then you’ll have to write your own custom message function.

    Untested, but this should work in your theme’s functions.php:

    `
    remove_action( ‘wp’, ‘bp_core_setup_message’, 2 );

    function my_bp_core_setup_message() {
    global $bp;

    if ( empty( $bp->template_message ) )
    $bp->template_message = $_COOKIE;

    if ( empty( $bp->template_message_type ) )
    $bp->template_message_type = $_COOKIE;

    add_action( ‘template_notices’, ‘my_bp_core_render_message’ );


    @setcookie
    ( ‘bp-message’, false, time() – 1000, COOKIEPATH );

    @setcookie
    ( ‘bp-message-type’, false, time() – 1000, COOKIEPATH );
    }
    add_action( ‘wp’, ‘my_bp_core_setup_message’, 2 );

    function my_bp_core_render_message() {
    global $bp;

    if ( $bp->template_message ) {
    $type = ( ‘success’ == $bp->template_message_type ) ? ‘updated’ : ‘error’;
    ?>
    <div id="message" class="”>

    template_message; ?>

    <?php
    do_action( ‘bp_core_render_message’ );
    }
    }`

    r-a-y
    Keymaster

    You can apply a filter to ‘bp_get_the_profile_field_datebox’ to add extra years:

    `apply_filters( ‘bp_get_the_profile_field_datebox’, $html, $day, $month, $year, $default_select );`

    Find the bp_get_the_profile_field_options() function in /buddypress/bp-xprofile/bp-xprofile-templatetags.php where this filter is defined, so you’ll have a better idea of how to override it.

    Some sample code that you can add to your theme’s functions.php:
    `function my_year_field ($html, $day, $month, $year, $default_select ) {
    // your code to override the year field
    }
    add_filter( ‘bp_get_the_profile_field_datebox’, ‘my_year_field’, 10, 5 );
    `

    #100116
    Chad
    Participant

    techguy, of course why didn’t I think of that…quick and easy solution! and r-a-y, the codex looks extremely helpful. Thanks guys!

    #100114
    r-a-y
    Keymaster
    #100112
    techguy
    Participant

    Not too late. Just download the BP plugin to your computer so you can get the default theme. Create your child theme and upload that and enable it. Then, upload the default BP theme back to its original location.

    Warning: Backup first in case something goes wrong:-)

    #100103
    techguy
    Participant

    Check with the Theme author. Sounds like a theme specific issue.

    If they don’t respond try the SeoPress plugin and you should be able to set the titles the way you want.

    #100101
    jonishere55
    Member

    I’m Using the custom community theme.

    #100093

    In reply to: Link to users blog.

    Bowe
    Participant

    I think placing the following code at the bottom of functions.php of your child theme should do the trick:

    `
    /* Creates Blog navigation for Accordeon Menu */
    function my_blog_menu(){
    global $bp;
    if ( !is_user_logged_in() || !function_exists(‘bp_blogs_install’) )
    return false;
    //two lines from bp_adminbar_blogs_menu() in bp-core-adminbar.php

    if ( !$blogs = wp_cache_get( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, ‘bp’ ) ) {
    $blogs = bp_blogs_get_blogs_for_user( $bp->loggedin_user->id, true );
    wp_cache_set( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, $blogs, ‘bp’ );
    }

    if ( is_array( $blogs ) && (int)$blogs ) {

    $blog=array_pop($blogs);//the first blog

    ?>
    <a href="siteurl; ?>”>

    `
    After you’ve put this in your functions.php add the following to sidebar.php to call the function:

    “`

    Thanks to @sbrajesh for this snippet :)

    #100088
    modemlooper
    Moderator

    I’ve fixed this and will upload to WP repo when BP gets updated.

Viewing 25 results - 22,051 through 22,075 (of 32,562 total)
Skip to toolbar