Search Results for 'bbpress'
-
Search Results
-
This is my scenario,
I create a private Forum of type category , then I create two public forums to type forum which are the children of that category forum. I get a nice category level organization, when I click on the url,
Home/ Forums/ Private: DummyCategory.
But when I click on one of the forums :: Home/ Forums/ Private: DummyCategory/ DummyForum1
all the posts that do not belong to that forum shows up. It means if I post in DummyForum2 or 1 or any forum, when I click Home/ Forums/ Private: DummyCategory/ DummyForum1 , all the posts show up.
It can’t be by design ? Is this a bug ? Most likely some settings need to be changed in the bbpress I suppose , any idea ?
Just for additional details I am using code to add into the forum. I can get the parent child relations between the forums displayed properly, the insertion of the topic goes to the right parent forum. But then that bug shows up.
if (!function_exists('bbp_insert_topic')) { require_once '/includes/topics/functions.php'; } echo "All fine here ??? Did it reached "; $forum_ID = $selectmyID; $terms = array(bbp_get_topic_tag_tax_id() => $key_pieces); // The topic data. $topic_data = array( 'post_parent' => $forum_ID, // forum ID of Projects hard coded 'post_status' => bbp_get_public_status_id(), // Subscribed users can see this 'post_content' => $my_content, 'post_title' => $slug, 'comment_status' => 'open', 'menu_order' => 0, 'tax_input' => $terms ); // The topic meta. $topic_meta = array( 'forum_id' => $topic_data['post_parent'], 'reply_count' => 0 ); // NOTICE! Understand what this does before running. $post_id = bbp_insert_topic($topic_data, $topic_meta); bbp_stick_topic($post_id , true); // Making it super sticky ! echo "The post id returned is " . $post_id; echo "Sucessfully inserted the post" . $slug . " programmatically !!!!";Hello, I want to create something like this “http://www.freeride.se/admarket/” where you as an bbpress user have the possibility to sell an item. I don’t want the functionality like woocommerce or such. I don’t need the checkout and everything. I just want something where I can add a picture, put a description of the item, input the email address and maybe a telephone number. Does bbpress support this with some extension? I would like it to look at the link provided. Thanks!
Topic: bbpress sidebar
Topic: Topic for all in the forum
wp 4.4.2
bbpress version 2.5.8
fdccl.fr/cgpaHello. I would like to create a topic in my forum with important informations and I would like that all the participants receive these informations without to subscribe to this topic (because some of them will forget). Do you know how to do that ? Thanks !
Topic: Cleaning Up Forum Sub-Forum
Okay….so I was on the WordPress forums thinking it was the bbPress forums….I know, I know. DUH!!
Complete NOOB here. I’m looking to create a forum based community.
I’m using Twenty Ten them and have started created my forum with bbPress.I have a “Master Forum” with with sub-forums “North”, “Central” and “South”. It is displaying as:
Location
North (0, 0), Central (0, 0), South (0, 0)
I’m assuming the “(0,0)” after each sub-forum title is the number of topics and replies. I want to remove those on the main forum page so it looks like:
Location
North
Central
SouthAny ideas?
I’ve just imported my SMF forum to bbPress with little trouble. However, all of my posts are now showing as being written by anonymous. Is there a simple MySQL query I can run that would change all of my topics and replies to myself instead of having to trawl through hundreds of posts to do it manually? 🙂
Topic: Freshness all wrong
The freshness indicator on my site is all wrong – http://epilens.com/forums/. I have tried using the bbpress repair tool with no success. Please advice.
I decided to program my own Like/Dislike plugin so I could customize it and tweak it for my exact needs. It’s working great in my custom threaded forum view for bbpress here:
By using the hook bbp_theme_after_reply_admin_links I’m able to get the like buttons to show up in the bbpress topics and replies, but they’re all the parent topic. See photo below.

Here’s one of my hooks:
//adds the like buttons right of the time on forum posts in bbpress function tk_after_bbpress_content() { $custom_content_after_forum_title = tk_like_buttons(); echo $custom_content_after_forum_title; } add_action( 'bbp_theme_after_reply_admin_links', 'tk_after_bbpress_content' );Hoping perhaps @robkk or @casiepa have some ideas? I can’t get the post id into the plugin for replies. Thanks!
I feel like I’m missing something really obvious here, but for the life of me, I can’t figure out what it is.
I just installed bbPress on my website today: http://naughtyerotica.org/forums/ When I go there and click on the only forum I have created thus far, I get an error message, “PRIVATE – You do not have permission to view this forum.”
Since I created the damn forum, this is more than a little confusing to me, lol.
I’ve never tried to host my own forum before, so I am (almost guaranteed) missing something obvious here.
TIA!
Topic: Forum Page not created
I installed bbPress and am following the “creating content” instructions from this webpage:
I created a forum using the instructions under “Creating a Forum”. The forum (called “Purchasing”) shows up under (Forums: All Forums) in my control panel.
The instructions say that my forum will be created at:
http://yourdomain.com/forums/forum/yourforumnameBut when I look at my wordpress pages in the control panel, there is no page for “forum” or any subforum created yet.
How do I actually put the forum as a “forum” page in my website? Even though I create forums, there is no forum page created. Do I have to create that top level “forum” page manually using an “add page” from my dashboard?
Thanks,