Search Results for 'theme'
-
AuthorSearch Results
-
November 20, 2010 at 4:38 pm #98751
In reply to: New Group creation fields
David
Participant@boonebgorges works perfect! thanks. I have hopefully one last issue that completely has me stumped. It works on my testing machine, but when I put it live I get errors. It has to do with me including the above idea but using my own custom data table. I insert my own form and add it with the function like above and put my own processing in the save function like above using the standard insert/update sql pointing to the new table for the form. It works on my local machine, but when I upload it live and click on ” create group” i get the following error….sorry for all the code
Warning: Cannot modify header information – headers already sent by (output started at /home/clubmash/public_html/wordpress/wp-content/themes/chatCaddie_theme/functions.php:141) in /home/clubmash/public_html/wordpress/wp-content/plugins/buddypress/bp-groups.php on line 1053
Warning: Cannot modify header information – headers already sent by (output started at /home/clubmash/public_html/wordpress/wp-content/themes/chatCaddie_theme/functions.php:141) in /home/clubmash/public_html/wordpress/wp-content/plugins/buddypress/bp-groups.php on line 1054
Warning: Cannot modify header information – headers already sent by (output started at /home/clubmash/public_html/wordpress/wp-content/themes/chatCaddie_theme/functions.php:141) in /home/clubmash/public_html/wordpress/wp-includes/pluggable.php on line 890
I am working in a child theme and I am at my ends trying to fix this. I am so close to what I want to do I just would hate to give up now. thanks for any tips you can give me.
November 20, 2010 at 4:24 pm #98750In reply to: Remove “Group Admin” section on Group page
@mercime
ParticipantVia CSS – add `body.groups #item-actions { display: none; }`
or
create bp-default child theme and copy over groups/single/group-header.php following folder structure and delete lines 3-21November 20, 2010 at 4:12 pm #98749In reply to: Hide BP Component for Non-Logged in users
@mercime
ParticipantCreate a child theme and add header.php into it. Then wrap the BP components including bp_nav_items in conditional tag https://codex.wordpress.org/Function_Reference/is_user_logged_in
November 20, 2010 at 4:12 pm #98748In reply to: Activity Stream on Home Page under a Sticky Post
LPH2005
ParticipantHe’s using the Ultimate Blogging Theme: http://www.ultimatebloggingtheme.com/
@cmubrad – I don’t know all of the details of that theme but the easiest is to install the site wide activity plugin and use a widget in the sidebar.
November 20, 2010 at 2:01 pm #98743In reply to: Activity Stream on Home Page under a Sticky Post
alphadeangelo
Membersorry if my reply is OOT, but I like your site theme, are you making by your own or buy from the designer, its eye cathcy
November 20, 2010 at 5:58 am #98731In reply to: How do I get my sidebar off buddypress pages?
LPH2005
ParticipantThe easiest is to modify the php files in your theme as well as the css files.
In particular, I modified the /activity/index.php file by removing the sidebar code near the bottom of the file.
“
Blog posts are done by having a template file written without a sidebar also.
Finally, adjust the container and padder css to your liking.
November 20, 2010 at 4:42 am #98730In reply to: Remove BP component links from main WP menu
csbarrett
Member@mercime, I’m not sure what was causing it, but once I created a child theme from Citizen Kane, I found that the header image from the bp-default theme was showing up behind the custom header image I uploaded (it has a transparent background so I could see behind it). I was trying different things, so I don’t know what was causing it. But sorry about the confusing post.
@modemlooper, the code you posted is what was left after I cut out lines 54-80. I also cut out line 84 as @mercime suggested. I put it back because it was in the code you posted but it didn’t seem to make a difference. Thanks both of you for your help though, it works now.
@Jenny, you might want to check out the BP-WP Navbar Menu plugin. It lets you customize the bp admin bar and you can add all your bp links under a drop-down menu (labelled “Community” by default).
November 20, 2010 at 4:18 am #98727In reply to: Adding action in global.js ?
imjscn
ParticipantLooks like it’s really a problem. DJPaul said need unlock loading in default theme. Now waiting the solution
November 19, 2010 at 11:50 pm #98719Pixyweb
MemberGreat, thanks for your reply
November 19, 2010 at 11:00 pm #98715modemlooper
ModeratorIt will fit most any theme with some modification to the HTML and possibly CSS. https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
November 19, 2010 at 10:36 pm #98713In reply to: New BuddyPress Theme: BuddyBase
hcleary
MemberI have upgraded to BP 1.2.6. I’m getting the same error above. Any ideas?
November 19, 2010 at 6:45 pm #98701Boone Gorges
KeymasterAre you using a custom theme? It sounds like the theme wasn’t updated to account for the new BP_Button class.
November 19, 2010 at 4:30 pm #98683In reply to: Remove BP component links from main WP menu
modemlooper
ModeratorEasiest way is to remove all the li links from the header.php file except the home link and wp_list_pages( ‘title_li=&depth=1&exclude=’ . bp_dtheme_page_on_front() ); and then add a sidebar menu widget for any links you need. Next version of BP will use WP menus for the top nav so you won’t need to customize the html.
remove everything from between ul id=”nav”
replace with
<ul id="nav">
<li<?php if ( bp_is_front_page() ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo site_url() ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?></a>
</li><?php wp_list_pages( 'title_li=&depth=1&exclude=' . bp_dtheme_page_on_front() ); ?>
<?php do_action( 'bp_nav_items' ); ?>
</ul><!-- #nav -->
November 19, 2010 at 2:45 pm #98681In reply to: Fullscreen theme and activity page
Hugo Ashmore
Participantand so you now need to follow the instructions I outlined above.
November 19, 2010 at 1:34 pm #98679In reply to: Fullscreen theme and activity page
ophidite
MemberI add this to the css of my theme :
#content-sidebar {
float: left;
width: 100%;
-moz-border-radius-topleft: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-webkit-border-bottom-left-radius: 6px;
}#content-sidebar .padder {
margin-right: 350px;
border-right: 0px solid #ddd;
-moz-border-radius-topleft: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-webkit-border-bottom-left-radius: 6px;
}and i call
in index.php of my bp activity page
November 19, 2010 at 1:19 pm #98677In reply to: Fullscreen theme and activity page
Hugo Ashmore
ParticipantBut you haven’t created any rules for sidebar so it can only sit in the flow??!!
It looks as though #sidebar needs to be placed after your #sidebar-content element has closed as you have rules for a classic source order arrangement with #content-sidebar floated 100% width and it’s first child given a right margin to clear space for the sidebar with this arrangement #sidebar element must be flowed after the main sidebar-container closes. Then you need to actually describe sidebar ruleset that floats it left, set a width and an equal negative left margin to match the width.
November 19, 2010 at 1:04 pm #98676In reply to: Users can’t register through BuddyPress home page
Active Citizenship
Participantthe problem for us IS with the theme. we were using the simple wp communty theme which may mean its a compatabilty issue between buddypress and a wp theme. the odd thing is that it worked for the past two months. its not a plug in issue. we could reinstall buddypress and wordpress but we’re afraid we’ll lose all site content.
November 19, 2010 at 12:35 pm #98675In reply to: getting Oembed to work with P2 theme for buddypress
Active Citizenship
Participantthanks. auto embeds didn’t work but we were able to succeed with the plugin all in one video back and it is working fine
November 19, 2010 at 7:31 am #98666In reply to: Remove BP component links from main WP menu
imjscn
ParticipantI just got the same job done on my child them (based on bp-default).
Of course, do it in Child theme, it’s safer and convinient.
I feel the easiest way is to remove the theme’s orginal nav lines, code my own nav and give it different id and class. This way can avoid inherit theme’s css
Adding bp links to admin bar should be another story, I haven’t arrive there yetNovember 19, 2010 at 6:34 am #98663In reply to: Remove BP component links from main WP menu
@mercime
Participant@csbarrett 1st, you should have mentioned that you were using the Citizen Kane bp-default child theme.
2nd, the only CSS it has directly imported from the bp-default theme is the adminbar.css therefore can’t fathom what you mean by “pulling both header images” and “overriding the bp-default header.css”.
3rd, perhaps @modemlooper, the theme author, can shed some light on your theme issues.November 19, 2010 at 3:04 am #98658In reply to: Remove BP component links from main WP menu
csbarrett
MemberI’m now realizing that Citizen Kane’s css was inheriting css from the default theme. So it is embedding the bp-default header behind the custom header image I entered into the citizen kane header.php file. Is there anyway to stop it from pulling both header images? Can I add some css that overrides the bp-default header css?
And why can’t I just cut the code directly from the Citizen Kane header file? That would be the easiest way…
November 19, 2010 at 2:37 am #98655In reply to: After Upgrading to 1.2.6 Having Footer Issues
jonnylons
ParticipantI did the upgrade to my theme…but still have the same problem. Ideas?
November 19, 2010 at 2:31 am #98654In reply to: Remove BP component links from main WP menu
csbarrett
MemberThanks a lot. It worked. I am not using the bp-default theme though, I am using the Citizen Kane theme. And it worked with that theme as well. When I created the child theme css file, I just called all six css files in the Citizen Kane theme. And in the Citizen Kane header.php file, the code to delete is on lines 54-80 and 84.
November 19, 2010 at 2:29 am #98653In reply to: Buttons and other UI elements not showing
@mercime
ParticipantYou need to revise HTML structure in BP templates transferred to your active theme in Step Three of the compatibility process. Plus copy some styling from bp-default’s style.css and adjust to taste.
BP Template Pack Process – https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
Template Pack Walkthrough – https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/November 19, 2010 at 1:21 am #98651In reply to: Remove BP component links from main WP menu
@mercime
Participant– create a bp-default child theme,
– copy header.php from bp-default theme folder and add to child theme,
– open up header.php and delete lines 51- 77 and line 81, save
– upload child theme folder with the revised header.php and style.css to server -
AuthorSearch Results