Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 29,901 through 29,925 (of 31,077 total)
  • Author
    Search Results
  • #40941
    felix2009
    Participant

    Still no bbPress theme available, it’s a shame! :P

    #40934

    Brian, the file itself is in bp-core/css/admin-bar.css, but like Jeffca mentioned you can also make a site-wide.css file, and place it in your currently active home theme\’s /css directory, and it will work everywhere within your site, even inside the member theme.

    That way you\’re only editing one file, and it\’s on your own terms.

    I’ve added my fix to a trac ticket so it will get reviewed and possibly fixed in the core for future updates. The goal with all of this is NOT to edit or hack the core, but to have the core be as universally compliant as possible, and still allow for customization later.

    #40915
    Trent Adams
    Participant

    You mean the same theme as the main install? The buddypress-home theme? It is possible by using one of the plugins out there to make a theme default (premium.wpmudev.org) or by just renaming the buddypress-home theme to “default” so that wpmu picks it up. Not sure if anything is hardcoded in the buddypress-home or member themes that would screw up, but might be worth testing out.

    Trent

    #40913
    Slava Abakumov
    Moderator

    @Nicola:

    Doesn’t work – just kills all styles. BTW: I’m not using your theme. So this is the problem :) Your hack only with your theme.

    CSS hardcoding – great.

    #40858

    In reply to: Anything for SEO

    Jeff
    Participant

    @Bbrian017 Each theme has its own header.php, so depending on the theme they select, the titles will vary.

    The default theme has more than the website name, ie. http://mayo.testbp.org/2009/03/25/hello-world/

    #40853
    felix2009
    Participant

    bbPress theme is still missing ;)

    #40852
    bbrian017
    Participant

    looks good but I don’t like that I have to register to download it!

    We might want to think about making template and theme developers supply download links to post inside the forums!

    #40850

    In reply to: Anything for SEO

    Jeff
    Participant

    You can change your blog titles in your themes\’ header.php files.

    I believe there are others using all-in-one-seo plugin too.

    #40833

    In reply to: Buddypress new theme

    felix2009
    Participant

    Why isnt it downloadable yet !?

    And how about the bbPress theme ?!

    They develop a ‘thing’ but it still is if you are walking in a supermarket, and evrything is behind glass :S

    #40826

    In reply to: Buddypress new theme

    nicolagreco
    Participant

    ehm.. it’s not downloadable yet..

    #40824

    In reply to: Buddypress new theme

    felix2009
    Participant

    Where can we download this bbPress theme ?

    #40821
    keston
    Participant

    I’ll try to set a little plugin or something later, but for the moment you can follow this method, it’s the Fishbowl81’s code adapted for ebay editor kit:

    Edit your bp-xprofile-filters.php by placing the following code after the custom buddypress filters:

    /* Display ebay listings field */

    function bp_profile_ebay_display( $field_value ="", $field_type = "", $field_id = "" ) {

    { // clean up input

    return "<script language='JavaScript' src='http://lapi.ebay.com/ws/eBayISAPI.dll?EKServer&ai=lwa%7Bfwvw%7Esa%7Cwsyw%60&bdrcolor=CCCCCC&cid=0&eksize=1&encode=UTF-8&endcolor=FF0000&endtime=n&fbgcolor=FFFFFF&fntcolor=000000&fs=0&hdrcolor=FFFFFF&hdrimage=1&hdrsrch=n&img=y&lnkcolor=75179C&logo=3&num=5&numbid=n&paypal=n&popup=n&prvd=9&r0=4&shipcost=n&si=".addslashes($field_value)."&sid=BP&siteid=0&sort=MetaEndSort&sortby=endtime&sortdir=asc&srchdesc=n&tbgcolor=FFFFFF&tlecolor=FFFFFF&tlefs=0&tlfcolor=000000&toolid=10004&track=5336248810&watchcat=63850&width=350'></script>";

    }

    }

    function bp_profile_ebay_groups( $group_name ="") {

    if($group_name == "My Ebay listings"){

    remove_filter( 'bp_the_profile_field_value', 'xprofile_filter_link_profile_data', 2);

    add_filter( 'bp_the_profile_field_value', 'bp_profile_ebay_display', 2, 3);

    }else{

    add_filter( 'bp_the_profile_field_value', 'xprofile_filter_link_profile_data', 2, 3);

    remove_filter( 'bp_the_profile_field_value', 'bp_profile_ebay_display', 2);

    }

    return $group_name;

    }

    add_filter( 'bp_the_profile_group_name', 'bp_profile_ebay_groups', 10, 1 );

    Also it depend of your css code but it can be useful to put this in your member theme’s stylesheet (base or your custom stylesheet).

    td.data table td{

    margin:0px;padding:0px;

    Then create a profile field group named “My Ebay listings” and a profile field like ebay username and you’re done!

    #40802

    In reply to: Navigation CSS

    If you\’re talking about your #nav, then in:

    http://gigbuddy.org/wp-content/themes/gigbuddy-home/css/base.css

    Line 97

    The below will sit it lower and mostly match your sites margins. I think that looks the best to me.

    Change your margin to:

    margin: 120px 0 15px;

    Design wise you will then still have rounded corners to worry about:

    http://gigbuddy.org/wp-content/themes/gigbuddy-home/css/base.css

    Line 105

    Change accordingly:

    -moz-border-radius-bottomleft:0;
    -moz-border-radius-bottomright:0;
    -moz-border-radius-topleft:3px;
    -moz-border-radius-topright:3px;

    Regarding the width of the nav, Are you saying that you want each one of the links to be a fixed width? To stretch them all across the 900px page width?

    #40797
    nicolagreco
    Participant

    if you’ve bpdev plugins installed you can do that without touching the code:

    <?php

    function register_my_css() {

    bpdev_theme_register_style(

    ‘my-css-hack’,

    ‘My Css hack’,

    ‘my_css’,

    ‘on’,

    ‘on’

    );

    }

    function my_css() {

    ?>

    #wp-admin-bar ul {

    height: auto !important;

    }

    <?php

    }

    ?>

    and save it in a new file under /mu-plugins

    So when bp will update that, you can switch this thing off via the WP Admin-> BPDEV Admin -> BPDEV Theme

    #40796

    Possible that something is just being stubborn here.

    Member-theme is fine, searching for groups and members is fine, member profiles are fine, but viewing specific groups are not.

    According to firebug, Andy is right and your structure.css file is missing.

    I would say more mysterious, the optionsbar.php and userbar.php are also missing. This leads me to believe the TEMPLATEPATH variable is also getting the wrong idea as to where it’s at maybe when viewing a group profile?

    #40788
    Michael Berra
    Participant

    It’s crazy – I tried to figure that out for hours… no it works. It wasn’t a plugin, but a js-conflict from the theme. Strange is only, that it once worked, and then not anymore.

    For me the issue is solved… :-)

    Thanks

    #40787

    In reply to: Buddypress new theme

    Andy Peatling
    Keymaster

    I’ll post them in good time, they’re a bit down on the list right now.

    #40785

    In reply to: Buddypress new theme

    gpo1
    Participant

    Andy, any update on the sharing the new member theme hints or tips?

    #40777
    Andy Peatling
    Keymaster

    You can just remove the search login bar from the template – Just remove:

    <div id="search-login-bar">
    <?php bp_search_form() ?>
    <?php bp_login_bar() ?>

    <div class="clear"></div>
    </div>

    From header.php of the home and member themes if you are using both.

    #40770
    Deep
    Participant

    http://www.gosmelltheflowers.com

    I have managed to customize the theme, moved the columns according to my design and even modified few things..

    Do let me know the feedback.

    Regards,

    Deep

    #40764
    Burt Adsit
    Participant

    You can disable the admin bar completely by putting this in your bp-custom.php:

    function my_remove_adminbar(){
    remove_action( 'wp_footer', 'bp_core_admin_bar', 8 );
    remove_action( 'wp_head', 'bp_core_admin_bar_css', 1 );

    remove_action( 'admin_footer', 'bp_core_admin_bar' );
    remove_action( 'admin_menu', 'bp_core_add_admin_css' );
    }
    add_action( 'bp_home_theme_functions', 'my_remove_adminbar');
    add_action( 'bp_member_theme_functions' , 'my_remove_adminbar');

    If you want to leave the gap that the css reserves for the bar then don’t put in the remove_action()’s for the css. You can disable this by commenting out the two lines: add_action(‘bp_home_theme_functions’…) and add_action(‘bp_member_theme_functions’…).

    You can selectively disable/enable it for the home theme or the member theme by choosing to disable/enable it with the above technique also.

    The member and home theme’s functions.php file triggers those two functions as the last thing that happens in both areas. The hook is designed to allow just such a thing. I’m so glad that Andy is ‘hook happy’. :)

    #40763
    talk2manoj
    Participant

    In that case you can take the code or functions from widget and use them in your theme.

    #40761
    Sgrunt
    Participant

    yes i know, but i’m working on a particular blog: users need to have all the same ready made interface, thay are not allowed to activate or deactivate widgets in that area. This will be a free theme/application that i’ll share as usual with the community

    #40757
    Joss Winn
    Participant

    You can see from the group page source that it’s not picking up any of the structure.css files, whereas member profile pages are. I’ve poked around in the files and can’t understand why this might be.

    The only stylesheet being used is buddypress-member/style.css

    It’s not related to the buddypress-home as I’ve replaced that with the older RC-1 download and the problem exists.

    It’s not related to the bp-groups.* files as I’ve replaced those with the older RC-1 download and the problem exists.

    I’ve removed all other files from mu-plugins but that doesn’t fix it.

    Looking at the page in Firebug, http://learninglab.lincoln.ac.uk/testbp/wp-content/bp-themes/buddypress-member/css/loader.php is being found but doesn’t seem to be loading anything.

    Not sure what to try next…!

    #40753
    Michael Berra
    Participant

    I just say: WOW! Really nice! I am almost depressed that our site doesn’t look as great as this after all that work… (I thought ours is much nicer than the default buddypress-theme, but this one is another league!).

    PS: As far as I got, there are some nice little changes (without plugins I guess) like friends & groups small and clean on the left, etc etc). Cool stuff. Please share, how it’s done :-)

Viewing 25 results - 29,901 through 29,925 (of 31,077 total)
Skip to toolbar