Search Results for 'theme'
-
AuthorSearch Results
-
March 24, 2009 at 12:51 pm #40787
In 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
March 24, 2009 at 7:25 am #40749In reply to: Securing components from non logged in users
mspecht
ParticipantI took a slightly different approach:
* redirected them to the register page adding a flag to the query string
* then in my theme added a some code to catch if the flag was set and if so
added this to my register page just before the bp_core_signup_do_signup() call.
jQuery(document).ready(function () {
setTimeout(function(){ jQuery(“#error”).fadeOut(“slow”); }, 3000);
});
You can only view this information if you are a registered user.
Either login or register to continue.
March 24, 2009 at 1:31 am #40736In reply to: The Wire and Groups Issue
Burt Adsit
Participantjosswinn, looking at your issue now. You just aren’t getting any CSS in the group at all except the member theme CSS. That isn’t even the group home template. Not the same structure at all. Try updating again make sure you update both themes and all the code in /mu-plugins. Overwrite everything.
March 23, 2009 at 8:09 pm #40714In reply to: new buddypress site looks great
Simon
ParticipantIt does indeed look fantastic (and with the horizontal nav, very similar to the theme I have been working on! lol)… good to know I’m heading in a good direction (and to get a sense of just how good it can look!).
Keep up the great work Andy.
March 23, 2009 at 4:23 pm #40699In reply to: Buddypress new theme
gpo1
ParticipantOk..share it with us..please
March 23, 2009 at 4:04 pm #40696In reply to: Buddypress new theme
creede
ParticipantAndy, the new theme is top notch! Really nice work. I can’t wait to see some member submitted themes showing up on the theme page.
March 23, 2009 at 3:22 pm #40686In reply to: Buddypress new theme
Andy Peatling
KeymasterI won’t be releasing the theme at the moment, but what I will be doing is sharing how I built some of the extra features.
March 23, 2009 at 3:19 pm #40684In reply to: Buddypress new theme
belogical
Participantcan’t wait to hear this response
March 23, 2009 at 2:31 pm #40678In reply to: Only wire posting in site activity, is possible?
Sgrunt
Participantthanx Andy. Only a last thing: could you tell me what is the page to modify in order to filtering site activity contents? if it is not so hard i will try, it’s important for a new theme that will be really different from previous themes.
March 22, 2009 at 10:06 pm #40653In reply to: BuddyPress Showoff: Post your links
Mindtrotter
ParticipantI’m just an ordinary user with no technical knowledge and I got this site started – http://petnetwork.ws . It’s using the standard theme and I guess it just fits the site’s content, I guess.
March 22, 2009 at 6:47 pm #40639In reply to: FaceBuddy free theme for BuddyPress
stev35555
ParticipantHi,
I have installed this and acivated it and looks good on the members pages but on the sites homepage it shows the default wpmu page my site is http://www.ourlordsblogs.com
March 22, 2009 at 5:26 pm #40633In reply to: Widget Ajax Members Group Problem
Paul Wong-Gibbs
KeymasterWell, it’s working for me with custom permalinks.
Would someone having this problem confirm their version of WPMU, BP and whether they are using a subdomain or subfolder install please? You need to be testing this with the default theme without any changes, and without any plugins, widgets or addons that are not part of the base WPMU and BP install.
March 22, 2009 at 5:01 pm #40632In reply to: Where to get theme of this buddypress forum?
ipin
ParticipantIt will be great if you can put this theme as the default theme for built-in bbpress under buddypress.
March 22, 2009 at 4:26 pm #40630In reply to: BP-FBConnect Plugin
Gibcosta
Participantok, works great in firefox on windows but in in IE8 the button is shifted upwards on home theme and on buddypress fb theme it is moved out of visibility.
social.gibcosta.com
March 22, 2009 at 9:01 am #40626In reply to: how to add page links at the top of the page?
Burt Adsit
ParticipantYou have to edit the header.php file in the theme you are using. In the home theme the links start at line #45 in the
<ul id="nav"> ... </ul>
block of html. There is a similar block of navigation items in the member theme.March 22, 2009 at 8:43 am #40624In reply to: Icon problems
Burt Adsit
ParticipantExactly what images are you talking about famous? Member theme, home theme or admin bar? The size of the logo images isn’t tied to font size as far as I can tell. Get firebug and take a look at what *is* controlling that.
March 22, 2009 at 7:59 am #40615In reply to: Where to get theme of this buddypress forum?
Burt Adsit
ParticipantI don’t think that this theme is available for download anywhere. It looks to me like the standard bbpress theme with a custom header and footer.
-
AuthorSearch Results