Buddypress compatibility theme issue – replacing buddypress template coding
-
Hi there, I’m finding it hard to identify what selection of my theme in the page.php file I need to match with the buddpress template files.
Buddypress template is this:
[HEADER]
<div id=”container”>
<div id=”content”>
[PAGE CONTENT]
</div><div id=”sidebar”>
[SIDEBAR CONTENT]
</div>
</div>[FOOTER]
and my page.php file comes out as this:
<?php get_header(); ?>
<!– BEGIN MAIN WRAPPER –>
<div id=”main-wrapper”><!– BEGIN MAIN –>
<div id=”main”><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!– BEGIN POST –>
<div id=”post”><h3 class=”section-title”><?php the_title(); ?></h3>
<div class=”post-entry”>
<?php the_content(); ?>
<?php wp_link_pages(‘before=<span class=”page-links”>Pages: &after=</span>’); ?></div>
</div>
<!– EMD POST –>
<?php endwhile; endif; ?></div>
<!– END MAIN –><?php get_sidebar(); ?>
<?php get_footer(); ?>
how exactly should I replace certain parts of the files to make the buddypress parts of my website correctly align within my theme?
Please help, I’ve tried to understand it as much as possible but I’m still a novice at working CSS
- The topic ‘Buddypress compatibility theme issue – replacing buddypress template coding’ is closed to new replies.