buddypress page content not being ouput
-
I am using BuddyPress 1.8 with a theme from themeforest.
http://themeforest.net/item/lightspeed-powerful-wordpress-theme/622698
For some reason, the_content() is not outputting the content for buddypress pages.
The buddypress page titles, body classes, and even post classes are correctly being output for each buddypress page, so the correct buddypress page template seems to be loading, but inside the div where the entry content is supposed to display, it is simply blank.
To debug I created a buddypress.php file and placed it in the theme folder. I stripped it down to the basics below and it is still not working. Any thoughts on what could be causing this conflict or where I should look in the theme files?
It is clearly a theme related issue because I switched to the default buddypress theme and the pages worked fine. Everything below outputs correctly except the_content(); which outputs nothing.
<?php get_header(); ?>
<div id=”content”>
<h1 class=”pagetitle”><?php the_title(); ?></h1>
<div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<div class=”entry”>
<?php the_content(); ?>
</div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
- The topic ‘buddypress page content not being ouput’ is closed to new replies.