Hello,
I have a forum which still works with a very old version of fluxbb (1.2.22).
I tried to convert my forum using the tool inside bbpress 2.5.4 but it doesn’t work at all. No forums is imported, no users, no topics, no replies, nothing at all.
My question is : which version of fluxbb should I have to make it work ?
Thank you
Greeting from Alabama,
I am completely new BBpress but not so much with wordpress. I would like to add a tinymce editor that mimics the wordpress editor. I search the forum but most of the solutions seem out date or dont work. I have tried a couple plugins but they dont seem to affect the bbpress editor.
Searching through the examples of bbpress forums i found tamierlfoundry and would like to implement this tinymce editor
View post on imgur.com
Is there a tutorial on how this can be done
(I post this once before but it didnt show up as posted)
I am not sure what to search in the forum for but I am looking to change the text in the header.
View post on imgur.com
Thanks
Hello!
For some reason the titles to both the forum and the topics are missing.
Any ideas would be greatly appreciated!
Kindly,
Sharon
Bellynsoul.com/forums
Hello. I know its weird but i need to fake an active community forum for the Teamspeak Non Profit License application. I am looking for a bot to do it or a premade database with a lot of topics. Can you help me?
I’d like to change the color of staff members usernames on my fourms as well as bold their names. This is probably some simple css I need to modify, could someone point me in the right direction as to how to do this? Most vbulletin forums have something like this, I’m trying to replicate.
Sorry to ask such a silly question, but I cannot seem to find info on them other than the https://codex.bbpress.org/shortcodes/ page. I have an idea of what they are, I’m just not sure how exactly to use them. It explains on that page that I just insert them into my desired page, but does not elaborate on that. I was hoping to find an article somewhere that goes over them in detail, but have yet to find it. So, I’ve decided to make a noob post here the bbpress forums.
Hi!
Thanks for stopping in. After creating a child theme to add the https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout php file, I noticed while it did organize categories, it also created a white space field beneath each one. Why?
Thanks!
I would prefer for admins not to receive emails when new topics or replies are created. Is this possible as I have looked and am struggling to find an option for it?
Thanks in advance
I need create a query to bring the list of forums and subforums on the homepage of my website, i woudn’t like to use shortcodes cuz i want create a custom style. I did a wp-query but i can’t use functions to show the topic, replies and posts quantity.
<?php
$args = array(
'post_type' => 'forum',
'order' => 'DESC',
'orderby' => 'date'
);
$query = new WP_Query($args);
?>
Foruns|
Posts
<?php if( $query -> have_posts() ): ?>
<?php while ($query -> have_posts() ) : $query -> the_post(); ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_title(); ?>
</a>
<?php $value = bbp_get_forum_post_count(); echo $value; ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
Nothing yet...
<?php endif; ?>
Thanks for help.