All of a sudden I'm getting this topic has been closed. click here to return to the forum messages whenever I try to create a new topic in my bbPress forum. Any ideas why this might be happening?
We Rock Your Web Forum » Content Management Systems
bbPress - This Topic Has Been Closed
(2 posts)-
Posted 2 years ago #
-
Posted 2 years ago
-
There's a number of things you can try to find out what's closing your bbPress topics:
- Make sure your forums are not checked to be categories. Categories are forum containers that cannot contain actual posts.
- Try posting a topic using the default bbPress theme, Kakumei. If that works, you've narrowed down the issue to a problem with your theme.
- Copy over the post-form.php file from your default theme. It's important that the
<?php if ( bb_is_tag() || bb_is_front() ) : ?>code is in place.
<p id="post-form-forum-container">
<label for="forum-id"><?php _e('Forum'); ?>
<?php bb_new_topic_forum_dropdown(); ?>
</label>
</p>
<?php endif; ?> - Make sure you have the bb_head and bb_foot action hooks in your custom template.
- Check your database and make sure topic_open is set to true (1), and that your topics have a start time (not zero).
If you're still having troubles, please comment below.Posted 2 years ago #