Buddypress template pack – getting it to work with Unique theme
-
I would appreciate it if someone could let me know how to modify the BP template pack’s themes with the code from Unique’s page.php. There is a sidebar on the pages.
The code for page.php:
<?php get_header(); ?>
<div id=BreadCrumbs class=”BreadCrumbs”>
<?php the_breadcrumbs(‘page’) ?>
<?php print_fontsize_selector() ?>
</div>
<div id=”Content”>
<div id=RightColumn>
<?php get_sidebar(); ?>
</div><div id=LeftColumn>
<div id=”ArticleContent”><?php normal_post(); ?>
<div class=”CleanerLeft”></div><?php
$contactid = get_contact_link(‘id’);
$contactlink = get_contact_link();
if ($contactid == get_the_ID($contactlink)) { // this applies just for the contact page
get_contact_form($contactlink);
}
else { // this is for any other post than the contact page
include (‘comments.php’);
}
?><?php edit_post_link(‘Edit this entry.’, ‘<p>’, ‘</p>’); ?>
</div>
</div><div class=”Cleaner”></div>
</div>
<?php get_footer(); ?>Thanks in advance for helping!
- The topic ‘Buddypress template pack – getting it to work with Unique theme’ is closed to new replies.