Search Results for 'bbpress'
-
Search Results
-
Setting up a new forum, and need some input. (this isn’t an installation question, but it also didn’t fit into any other forum category, so it’s going here until someone lets me know otherwise.)
Looking to do a single-page forum, with managed/moderated (top level) topics, and open commenting there-after.
I’m a little unsure of where I need categories/forums/topics.
I will have a fixed number of categories (my term here, not bbp-catagories I think), that will be “Genres.” I don’t think bbpress-categories work here, as I can only have forums and not posts under them. Also I want the ability to “enable/disable” the active ones, and all of their content, depending on the month.
Under each category, I want primary “posts”/topics. Each one will be an article, something like either a review or a historical analysis. These will be written by specific authors, and moderated/approved by an admin. Normal users can’t post at this level (although maybe a submission form down the line, but still would have to be approved by a moderator.).
Then below that, the whole of registered users can comment/discuss. This would be the heart of the forum.
So it would be more of something like a newssite with comments, than a traditional open-ended forum. [Or like the old slash dot used to be, with primary articles (usually links to other content with a little commentary by the user that submitted it), and the bulk of the community activity was the discussion on each story.] But still would like it driven by bbpress, as that leaves room for future expansion/changes without having to restart.
So what’s the best way to leverage the categories/forums/topic here?
3 categories, each with 1 forum in it?
3 different forums (ignore the category)?
Try to use something else like tags?
Other?As this is so simple, I had a question about how to do this on a single page [3 key elements: 1) menu for genre/category, 2) sidebar with recent items for the genre/category, and 3) content area populated from whatever was clicked on in sidebar. No page for individual post. No topics/directory/archive page. Single page is all that’s needed.] but think I need to get the categories/forums/topics sorted out first.
Topic: bbpress ignores custom CSS
I’m using a child theme and I’m trying to make CSS adjustments to the forum list. I need to get rid of float + width because the numbers are not aligned with the titles (topic, voices, replies, last post). Whatever I try, bbpress ignores my changes. I tried adding the new CSS to style.css in my child theme as well as adding it to Jetpack’s custom CSS. I did even add the extra code to functions.php in my child theme so that bbpress style could be overwritten without using !important. Using !important doesn’t work either. I really don’t know what else to try. My theme is not perfect for bbpress, so I need to tweak a few things.
Topic: Login redirects to WP login
When someone uses bbPress login on my forum page, it redirects them to then login to the main WP login page, which then sends them back to the site’s homepage….how do I just let them login and remain on Forum page??
Hey y’all. I’m trying to import a bbpress forum from one site to another and am experiencing troubles getting my replies to show up. I’ve imported .xml files for my forum, topics, and replies (I had to separate out my replies into batches bc it was so large). In my admin section it shows that there are 442 published replies however none show up on the table. I’ve tried “Recalculate the position of each reply” in Repair Forums but get a blank screen every time.
I tried increasing my execution time in .htacess by adding
php_value max_execution_time 900and still nothing.Any suggestions on how I can get this replies to show up? Thanks!
How can I allow for all user to upload image in the topics?
Hi,
I’ve been attempting to import a vBulletin4.2.1 forum to bbPress 2.5.8 (running WordPress 4.4.2) and initially had database connection issues causing no users/posts/etc being found to covert. Having resolved the problems with these server import parameters I am now receiving an unknown character set error as below:
Starting Conversion
No users to convert
WordPress database error: [Unknown character set: ‘utf8mb4’]
SELECT convert(user.userid USING “utf8mb4”) AS userid,convert(user.password USING “utf8mb4”) AS password,convert(user.salt USING “utf8mb4”) AS salt,convert(user.username USING “utf8mb4”) AS username,convert(user.email USING “utf8mb4”) AS email,convert(user.homepage USING “utf8mb4”) AS homepage,convert(user.joindate USING “utf8mb4”) AS joindate,convert(user.aim USING “utf8mb4”) AS aim,convert(user.yahoo USING “utf8mb4”) AS yahoo,convert(user.icq USING “utf8mb4”) AS icq,convert(user.msn USING “utf8mb4”) AS msn,convert(user.skype USING “utf8mb4”) AS skype FROM user AS user LIMIT 0, 100I’ve been trying the vBulletin importer rather than vBulletin3 having seen this advised elsewhere on this forum. Can anyone provide me with a solution/work around to prevent this issue?
Thanks for the help!
Ollie
Hello,
I’m pretty new to the WordPress-World, but it makes a lot of fun.
I’ve installed bbPress and an additional Social Login Plugin.I want to use the bbPress Login Widget but the Social Button appears like this:
http://forcenews.de/wp-content/uploads/2016/03/fb_error.jpg
Any Idea how I can change the alignment of the Button/Text?
(Sorry for my bad english)
I don’t know that from when this error came in my forum
but I noticed now.example url http://www.swstarone-sat.com/forums/users/juliuspex/
you can notice that there no username or nickname displaying on the page.
check this screenshot.
http://www.mediafire.com/convkey/eb5c/inli2aq9h3i10nmzg.jpgAfter I activated bbPress in my WordPress site, my child theme styles were ignored – and now WordPress is using only the styles in my theme’s original style.css file. How can I ensure that my child theme styles are applied? I am using WordPress 4.4.2, and i installed bbPress 2.5.8.
Thank you.
Hello,
I have found a code snippet somewhere, that does a fine job by including forum topics in the ordinary WP search. The only problem is that I have now added some private forums on the site where teachers can share assignments and problem statements for use in class.
So I would like to exclude private forum topics and replies from search results unless you are logged in as ‘contributor’ and up.
Does anybody know how to code that?
My code snippet is here:
/** * Include bbPress 'topic' custom post type in WordPress' search results */ function ntwb_bbp_topic_cpt_search( $topic_search ) { $topic_search['exclude_from_search'] = false; return $topic_search; } add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' ); /** * Include bbPress 'forum' custom post type in WordPress' search results */ function ntwb_bbp_forum_cpt_search( $forum_search ) { $forum_search['exclude_from_search'] = false; return $forum_search; } add_filter( 'bbp_register_forum_post_type', 'ntwb_bbp_forum_cpt_search' ); /** * Include bbPress 'reply' custom post type in WordPress' search results */ function ntwb_bbp_reply_cpt_search( $reply_search ) { $reply_search['exclude_from_search'] = false; return $reply_search; } add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );Thanks.
Current WordPress and bbPress