Search Results for 'theme'
-
AuthorSearch Results
-
December 11, 2010 at 6:24 am #100254
In reply to: Problems to create a new blog
Virtuali
ParticipantAre you using default theme??
Custom theme?
December 10, 2010 at 11:20 pm #100242In reply to: New WP theme framework will have BP support
José M. Villar
ParticipantYes, 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.
December 10, 2010 at 10:11 pm #100240In reply to: New WP theme framework will have BP support
Paul Wong-Gibbs
KeymasterAlso 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
December 10, 2010 at 7:28 pm #100230In reply to: Remove search box from header in Default bp theme
Steve Bruner
Participantadd the following in your child theme’s functions.php file;
`add_filter( ‘bp_search_form_enabled’, false );`
bye, bye, search box!
December 10, 2010 at 6:02 pm #100225In reply to: BP bar is messing up my website. Please help
@mercime
ParticipantSince 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;
}`December 10, 2010 at 5:42 pm #100219In reply to: BP bar is messing up my website. Please help
Paul Wong-Gibbs
KeymasterTemplate 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.
December 10, 2010 at 2:26 pm #100209In reply to: Citizen Kane Theme white space
Ekine
ParticipantBlog 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.pngDecember 10, 2010 at 12:10 pm #100205In reply to: Citizen Kane Theme white space
Ekine
ParticipantI have just noticed that blog comments don’t show within the activity stream.
December 10, 2010 at 10:23 am #100202In reply to: Removing posts authors avatars…?
James
Participanthi,
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).December 9, 2010 at 11:22 pm #100183In reply to: Admin Bar Disapears
WRAWRWAWR
ParticipantI’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…
December 9, 2010 at 10:20 pm #100182In reply to: How to hide a page when user is logged in?
techguy
ParticipantModify 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.
December 9, 2010 at 5:36 pm #100163In reply to: Citizen Kane Theme white space
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
December 9, 2010 at 4:26 pm #100158In reply to: Where can I add some php code in activity page?
modemlooper
Moderatorwp-content/plugins/buddypress/bp-themes/bp-default/activity/
December 9, 2010 at 10:46 am #100142In reply to: Confused templates list in theme editor subpanel
piclours
Memberok, will do, thanks.
December 9, 2010 at 10:37 am #100141In reply to: Confused templates list in theme editor subpanel
Paul Wong-Gibbs
KeymasterI think you need to make a ticket for this on the WordPress bug trac system as it sounds like it is a core issue.
December 9, 2010 at 12:29 am #100127In reply to: icons next to navigation?
@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.December 8, 2010 at 8:50 pm #100118In reply to: PHP help links in bp_core_add_message
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’ );
}
}`December 8, 2010 at 8:31 pm #100117r-a-y
KeymasterYou 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 );
`December 8, 2010 at 8:27 pm #100116In reply to: Too late to create a child theme?
Chad
Participanttechguy, of course why didn’t I think of that…quick and easy solution! and r-a-y, the codex looks extremely helpful. Thanks guys!
December 8, 2010 at 8:16 pm #100114In reply to: Too late to create a child theme?
r-a-y
KeymasterRemember the codex is your friend!
https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
https://codex.buddypress.org/theme-development/December 8, 2010 at 7:53 pm #100112In reply to: Too late to create a child theme?
techguy
ParticipantNot 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:-)
December 8, 2010 at 6:00 pm #100103In reply to: Problem With Title Tags
techguy
ParticipantCheck 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.
December 8, 2010 at 5:20 pm #100101In reply to: Getting Rid of Not Found Searchbar
jonishere55
MemberI’m Using the custom community theme.
December 8, 2010 at 12:45 pm #100093In reply to: Link to users blog.
Bowe
ParticipantI 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.phpif ( !$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
December 8, 2010 at 10:21 am #100088In reply to: Citizen Kane Theme white space
modemlooper
ModeratorI’ve fixed this and will upload to WP repo when BP gets updated.
-
AuthorSearch Results