Search Results for 'theme'
-
AuthorSearch Results
-
March 25, 2009 at 7:12 pm #40941
In reply to: Buddypress theme for bbPress ?
felix2009
ParticipantStill no bbPress theme available, it’s a shame!
March 25, 2009 at 6:47 pm #40934In reply to: Admin bar mouseover issue
John James Jacoby
KeymasterBrian, 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.
March 25, 2009 at 3:55 pm #40915In reply to: All blogs under same theme, easier access
Trent Adams
ParticipantYou 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
March 25, 2009 at 3:48 pm #40913In reply to: Admin bar mouseover issue
Slava Abakumov
ModeratorDoesn’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.
March 25, 2009 at 1:10 am #40858In 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/
March 24, 2009 at 10:27 pm #40853In reply to: FaceBuddy free theme for BuddyPress
felix2009
ParticipantbbPress theme is still missing
March 24, 2009 at 10:21 pm #40852In reply to: FaceBuddy free theme for BuddyPress
bbrian017
Participantlooks 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!
March 24, 2009 at 10:10 pm #40850In reply to: Anything for SEO
Jeff
ParticipantYou can change your blog titles in your themes\’ header.php files.
I believe there are others using all-in-one-seo plugin too.
March 24, 2009 at 9:38 pm #40833In reply to: Buddypress new theme
felix2009
ParticipantWhy 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
March 24, 2009 at 8:39 pm #40826In reply to: Buddypress new theme
nicolagreco
Participantehm.. it’s not downloadable yet..
March 24, 2009 at 8:00 pm #40824In reply to: Buddypress new theme
felix2009
ParticipantWhere can we download this bbPress theme ?
March 24, 2009 at 7:23 pm #40821In reply to: Purely Genius Way to Add Custom Profile Fields
keston
ParticipantI’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!
March 24, 2009 at 4:11 pm #40802In reply to: Navigation CSS
John James Jacoby
KeymasterIf you\’re talking about your #nav, then in:
http://gigbuddy.org/wp-content/themes/gigbuddy-home/css/base.cssLine 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.cssLine 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?
March 24, 2009 at 3:00 pm #40797In reply to: Admin bar mouseover issue
nicolagreco
Participantif 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
March 24, 2009 at 2:58 pm #40796In reply to: The Wire and Groups Issue
John James Jacoby
KeymasterPossible 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
TEMPLATEPATHvariable is also getting the wrong idea as to where it’s at maybe when viewing a group profile?March 24, 2009 at 1:00 pm #40788In reply to: Group/Personal Avatar issues
Michael Berra
ParticipantIt’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
March 24, 2009 at 12:51 pm #40787In reply to: Buddypress new theme
Andy Peatling
KeymasterI’ll post them in good time, they’re a bit down on the list right now.
March 24, 2009 at 12:36 pm #40785In reply to: Buddypress new theme
gpo1
ParticipantAndy, any update on the sharing the new member theme hints or tips?
March 24, 2009 at 11:46 am #40777In reply to: How to remove the search/login bar
Andy Peatling
KeymasterYou 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.
March 24, 2009 at 10:40 am #40770In reply to: BuddyPress Showoff: Post your links
Deep
Participanthttp://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
March 24, 2009 at 10:18 am #40764In reply to: How to remove the search/login bar
Burt Adsit
ParticipantYou 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’.
March 24, 2009 at 10:14 am #40763In reply to: Detect if this is the main blog
talk2manoj
ParticipantIn that case you can take the code or functions from widget and use them in your theme.
March 24, 2009 at 9:51 am #40761In reply to: Detect if this is the main blog
Sgrunt
Participantyes 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
March 24, 2009 at 9:31 am #40757In reply to: The Wire and Groups Issue
Joss Winn
ParticipantYou 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…!
March 24, 2009 at 8:56 am #40753In reply to: new buddypress site looks great
Michael Berra
ParticipantI 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
-
AuthorSearch Results