Search Results for 'theme'
-
AuthorSearch Results
-
December 13, 2010 at 12:24 am #100357
testador
MemberHave you tried the cityguide wootheme with buddypress?? it seems to be only for regular WP
December 13, 2010 at 12:07 am #100356testador
Memberthankyou, @mercime. It is nice that I got a reply. this forums don’t seem very active. do you know of a more active community?
I’m checking out the templates, and possible modifications to them. My major problem is the quick posting, as I’d need people to stay in the frontend… still searching. anyone else has tried to make a city guide with Buddypress?
December 12, 2010 at 7:46 pm #100351In reply to: Where did user interactions go?
Paul Wong-Gibbs
KeymasterYou may not have edited the files, but were they copied into your child theme?
December 12, 2010 at 6:23 pm #100345In reply to: Using the existing component in members theme
manimaranvel
MemberPlease somebody tell me is it possible to use the main(activity, members etc..) component in members theme
December 12, 2010 at 6:18 pm #100344In reply to: Using the existing component in members theme
manimaranvel
Memberso sad no response
December 12, 2010 at 5:12 am #100324jianchung
MemberHi @joescars, did you put the ‘404-handler.php’ in your root folder or in your themes folder? I tried putting it in my root folder but on creation of Groups it redirects back to my homepage.
December 11, 2010 at 10:07 pm #100305In reply to: I want to remove the logout link from the sidebar
@mercime
Participant@jonnycardel so you want to delete that whole section with the avatar, login, AND logout? Open up sidebar.php https://trac.buddypress.org/browser/tags/1.2.6/bp-themes/bp-default/sidebar.php starting at line 8 where Is_user_logged_in to line 56 with php endif; deals with the avatars, login and logout. If you do not want them, delete the block.
December 11, 2010 at 9:59 pm #100300In reply to: convert theme
@mercime
Participant@pakhermawan that would certainly be an interesting project. Install BP Template Pack plugin and follow instructions on screen. Some BP Codex articles might help you along the way:
https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/December 11, 2010 at 8:50 pm #100286In reply to: WordPress/BuddyPress Facebook integration?
Jam
MemberI am using Simple Facebook COnnect,. It DOES allow users to connect FB and WP, but I want them to be able to sign up using BuddyPress, not just WP. So when users hit “register” on my BuddyPress theme, there is a connect button, not just when they go to wp-login.
Any ideas?
December 11, 2010 at 8:10 pm #100282In reply to: I want to remove the logout link from the sidebar
@mercime
Participant@jonnycardel if you’re using a child theme of bp-default, then copy over sidebar.php from bp-default theme to child theme folder. If it’s only the Log Out link you want to delete, then delete this line from your sidebar.php
`<a class="button logout" href="”>`December 11, 2010 at 6:24 am #100254In 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.
-
AuthorSearch Results