Search Results for '\"wordpress\"'
-
Search Results
-
Topic: Changing bbPress templates
bbpress has a large number of do_action() statements. I am familiar with this at the wordpress level but I am unable to locate where bbpress registers a large number of these actions. Specifically I would like to change the behaviour of:
do_action( ‘bbp_template_before_forums_loop’ );
If someone could point me in the right direction that would be greatly appreciated.Hi, everywhere, i mean everyone on every tutorial is mentioned, that you must install the plugin like this
1) Visit the WordPress Administration Screen and navigate to Plugins > Add New.
2) Search for bbPress
3) Locate the bbPress plugin and click install
4) Activate the pluginBut i dont want people to have to install it, i want the plugin to be allready integrated in my custom theme im building. But when i copied it to my plugin folder (in my custom theme folder, not the “wp-conetnt/plugins” !!), and i required it in my functions.php. after this, the web get stacked, it kills my browser, because there is hundreds of error messages:
Warning: ksort() expects parameter 1 to be array, null given in /www/doc/domain/www/wp-content/themes/theme/plugins/bbpress/includes/core/template-functions.php on line 316
Warning: reset() expects parameter 1 to be array, null given in /www/doc/domain/www/wp-content/themes/theme/plugins/bbpress/includes/core/template-functions.php on line 321
………….
Does anybody know how to integrate it? it would be great if there is some tutorial. everywhere i find how to use it, or the 4 steps to install it by zip uploading.
thanks for help
Hi,
I have a little problem in my bbpress forum.
I am using a theme, and the theme is moving the links in the forum to the right side.
It does the same with the avatars of the users. It does not happen with the first post. But alle the others.
I hope someone can help me out.Forum link: http://danskyt.net/forums/
Screenshot of the problem: http://gyazo.com/9f5db4301317e75ad87525c56f5fa09b.png
Screenshot of the first post in topic: http://gyazo.com/c346d1565561621cfa42a674fde6a6d5.pngWordPress v. 3.8.1
BBPress v. 2.5.3
Theme: Point
WebSite: http://danskyt.net/When a user tries to edit their reply, the “Edit” button links to: http://www.achievementfest.com/index.php/forums/topic/%5BTHREAD NAME]/edit/
Which goes to a 404 error. I am using WordPress 3.6.1, and bbPress 2.5.3-5249. I had been using a previous version of bbPress, with the same issue, and tried updating it to see if the problem resolved.
I cannot find anything about setting up the edit page, so, I don’t know if I missed a step.
Does anyone have a suggestion, please?
Ticket https://bbpress.trac.wordpress.org/ticket/2031
One feature that I struggle a bit in why bbPress broke from the norm is Freshness. It is customary to have the last column for “Last post” which includes the date-time of last post (topic/reply) and the author of last post.
bbPress has decided to use “Freshness” instead of “Last post” as title. Instead of date-time, it displays time-since.
Perhaps time to move to the more convention approach here. Probably good for performance too – won’t need to calculate freshness.
Topic: WordPress with bbpress
This is new
I have a form, with multiple inputs that I am trying to get posted to the wordpress “post_content”. I am able to get the title field and only one other field to post successfully, only when making a field name “description” instead of “description[]”, but have no idea how I can get the rest to submit into the post_content. I would like the inputs posted like the image I have created below.

Here is the code I currently have that works for the title only.
<?php /* Template Name: Question Form */ ?> <?php if( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == "new_post") { if (isset ($_POST['title'])) { $title = $_POST['title']; } else { echo 'Please enter a title'; } if (isset ($_POST['description'])) { $description = $_POST['description']; } else { echo 'Please enter the content'; } $tags = $_POST['post_tags']; $new_post = array( 'post_title' => $title, 'post_content' => $_POST['description'], 'post_parent' => 599, 'post_status' => 'publish', 'post_type' => 'topic' ); $topic_meta = array( 'forum_id' => $new_post['post_parent'] ); $topic_id = bbp_insert_topic($new_post, $topic_meta); wp_redirect(get_permalink($topic_id)); exit; } ?> <form id="new_post" name="new_post" method="post" action=""> <p class="question"><label>Title</label><input name="title" type="text"> <p class="question"><label>Description</label><input name="description[]" type="text"> <p class="question"><label>Your First Name</label><input name="description[]" type="text"> <p class="question"><label>Your Last Name</label><input name="description[]" type="text"> <p align="right"><input type="submit" value="Publish" tabindex="6" id="submit" name="submit" /> <input type="hidden" name="action" value="new_post" /> <?php wp_nonce_field( 'new-post' ); ?> </form>I don’t know how to add the other fields to be a part of post_content.
I have tried a few other things, but have been unsuccessful. I would appreciate any help very much!Topic: Topic replies do not display
I set up WordPress on Microsoft Azure cloud and installed bbPress. Users can add topics and type in posts/replies and the correct number of posts/replies are displayed but the actual post/reply text does not display when users click on the topic title. Take a look: http://testgene2.azurewebsites.net/?topic=which-16s-rrna-primers-to-use
Any help or ideas are appreciated. I pretty much went with the defaults on installation and settings.