Forum Replies Created
-
In reply to: Highlight search results
great – glad you are fixed
In reply to: Highlight search resultsThis plugin seems to do that and claims bbpress support
I have not tried it, so please come back and let us know if it works
In reply to: Template Overrides – Not Workinggreat – thanks for letting us know
In reply to: Template Overrides – Not Workingwhich version of bbpress are you using ?
In reply to: Remove form post after 10 daysthere is a fuction
bbp_delete_topicfunction that you can substitute which I have not testedIn reply to: Remove form post after 10 daysthis will close topics with no activity in the last 10 days
/* Plugin Name: BBPress Close Old Posts Description: Close BBPress 2.0+ posts that haven't been updated in X days. Author: Raygun Version: 0.1 Author URI: http://madebyraygun.com This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ register_activation_hook(__FILE__, 'bbpress_topic_scheduler'); add_action('bbpress_daily_event', 'bbpress_close_old_topics'); function bbpress_topic_scheduler() { wp_schedule_event(time(), 'daily', 'bbpress_daily_event'); } function bbpress_close_old_topics() { // Auto close old topics $topics_query = array( 'author' => 0, 'show_stickies' => false, 'parent_forum' => 'any', 'post_status' => 'publish', 'posts_per_page' => -1 ); if ( bbp_has_topics( $topics_query ) ) while( bbp_topics() ) { bbp_the_topic(); $topic_id = bbp_get_topic_id(); $last_active = strtotime( get_post_meta( $topic_id, '_bbp_last_active_time', true ) ); if ($last_active < strtotime( '-10 days') ) bbp_close_topic( $topic_id ); } } ?>In reply to: Allowing Users to Create Forumsgreat – glad you are fixed
In reply to: Topics Not Showing on ForumI appreciate that generic words on setting up do not always cut it, but the guide is just that a guide, not intended to be definitive in all cases.
Given that I have neither a link to your current site or a real idea of what you are after, it is hard to help.
Maybe a link to your current site would help my unedrstanding
In reply to: Topics Not Showing on Forumthat’s a category and forums underneath
In reply to: Allowing Users to Create Forumshmm… those capabilities should allow this to happen.
I’d suspect that these are not being added – how are you doing this?
In reply to: Highlight search resultslink to an example on your site please
In reply to: Search bar doesn`t workhttps://bbpress.org/forums/topic/search-not-working-2/ may be the issue
In reply to: Topics Not Showing on Forum[bbp-forum-index] gives a list of forums, not topics. you then click on a forum to get that forums topics.
In reply to: Where Do I Put This?sorry, not into selling stuff. and no I’m not the bbpress author.
great – thanks for posting the answer
In reply to: Topics Not Showing on Forumok, to understand what your issue might be, I need a link to your site
In reply to: How to make access to private forum paid?will get you most of the way there. You could then link your purchases to joining a group, but you’ll need a hook from whatever payment/membership plugin you are using
In reply to: Topics Not Showing on Forumnot sure what you are trying to achieve
[bbp-forum-index] shows the forums, you click a forum and get a list of topics for that forum – ois that not happening?In reply to: can’t get see all my topics on forum pagegreat – glad you are fixed
In reply to: Stupid Starting out questiongreat
In reply to: New to WP ..and bbPressgreat
In reply to: New to WP ..and bbPressPlease forgive me my ignorance– don’t worry we were all there when we started !!bbpress uses the wordpress database and pages so is contained entirely within wordpress.
at it’s simplest, just put a ‘custom link’ menu entry of url ‘/fourms/’ and navigation label of ‘forums’ into your menu.
Alternately create a page with a title of say ‘forums’ and put [bbp-forum-index] in the content.
In reply to: New to WP ..and bbPressbbpress is just a plugin that sits within wordpress, so you would just install it and typically have a menu entry to
yoursite.com/forums
see
In reply to: Stupid Starting out questionyes, in effect create the subdomain you say, and install wordpress and bbpress.
Then you could just have a home page with the code [bbp-forum-index] in it and that is all that site would contain
In reply to: Layout break / embedding forum in page – slug issue?this is a theme conflict issue, and you need to get your theme to recognise bbpress.
Not bbpress’s fault and not your theme’s fault, both just use wordpress
see
section 8 on trying to get them to work together