Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `
…
` or `
..
` to `
// Titles Of Respective BP Page Templates //
` and move it above `
Save files.
I saw some guides on this step to get my theme to work with BP, but I am not 100% confident about what I am doing, especially with how steps differed for the register.php. If I am missing something, please let me know.
I think this is right, but am too tired to continue for the day, so I will copy/paste them all tomorrow and see what the damage is
These are my theme’s files:
page: http://pastebin.com/8AAHpbQs
header: http://pastebin.com/6EDusUpe
footer: http://pastebin.com/1ExBm76U
sidebar: http://pastebin.com/65vycTCU
index: http://pastebin.com/f3p74LL5
I’m thinking I need to change the start
<div id="content">
<div class="padder">
to
<?php get_header();
global $woo_options;
?>
<div id="content" class="page col-full">
<section id="breadcrumbs">
</section><!--/#breadcrumbs -->
<section id="main" class="col-left">
and the end..
</div><!-- .padder -->
</div><!-- #content -->
// different in each file
change to
</section><!-- /#main -->
</div><!-- /#content -->
Then I guess the only difference is register.php adding this script:
</section><!-- /#main -->
</div><!-- /#content -->
jQuery(document).ready( function() {
if ( jQuery('div#blog-details').length && !jQuery('div#blog-details').hasClass('show') )
jQuery('div#blog-details').toggle();
jQuery( 'input#signup_with_blog' ).click( function() {
jQuery('div#blog-details').fadeOut().toggle();
});
});
I’m totally new to BP and just starting to take a look so maybe the examples I saw are outdated. After this, I am guessing I will still have to tweak CSS and maybe look at some examples here: http://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/
I’m kind of questioning if I really want all the BP features, such as activity streams, so maybe it will be simpler to drop some of those. Thanks in advance for anyone who can help.