Forum Replies Created
-
In reply to: Importing BBPress Records from Rainmaker
‘I have a database in Rainmaker’
what is rainmaker? a hosting company, cms or what ?
my style pack plugin has an unread posts section
In reply to: Topic slugsorry, this would probably require major coding to do
In reply to: Related Threads3 CPT’s topic, reply and forum
In reply to: Forum reply permalink issueif you haven’t already, report this in the buddypress forum
In reply to: Forum Emails Are Exceeding Host QuotaMany providers limit the amount of emails, and yes what starts as a single email, has to become many emails as the email provider splits out one to each BCC, so 1,000 emails are received and it is the mailer who turns 1 into 1,000 so you probably do exceed.
ok that plugin is altering the same area that I am, so that is why it is showing
Is the “UNREAD FORUM TOPICS” not part of bbPress’s default functionality?
correct
not possible with current version, and not in my planned list yet
as a test can you try with just bbpress and private groups, as if that is ok, add the others back until you find which one is allowing this
In reply to: Custom search forum widthIt’s like using the shortcode
, or is it using the shortcode [bbp-search] ??
are you also using buddypress?
and what other bbpress related plugins are you using ?In reply to: One forum with all of my categoriesforums belong to categories
In reply to: Not set number of answers on bbpress forumgreat – glad you are fixed
In reply to: Sub Forums Or TopicsSo you can either
Create ‘operating systems’ as a category, and have Windows, Linux, Apple, Android etc. as forums belonging to this parent category
or
Create ‘operating systems’ as a forum, and have Windows, Linux, Apple, Android etc. as forums belonging to this parent forum.
The first of you don’t want topics in the parent forum, the 2nd if you do
You set the ‘type’ in dashboard>forums>edit forum and on the right hand side you will see ‘forum atributes’ wity type within that and parent forum underneath
In reply to: Hide forum from logged in usersyes that looks like a good solution !
In reply to: Hide forum from logged in usersIf you just want to remove it from the list then you could amend loop-single-forum.php
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-forum.php
bbPress will now use this template instead of the original
and you can amend thischange it to (assuming 40250 is the fiorum id)
<?php /** * Forums Loop - Single Forum * * @package bbPress * @subpackage Theme */ if ( !bbp_get_forum_id() == '40250')) { ?> <ul id="bbp-forum-<?php bbp_forum_id(); ?>" <?php bbp_forum_class(); ?>> <li class="bbp-forum-info"> <?php if ( bbp_is_user_home() && bbp_is_subscriptions() ) : ?> <span class="bbp-row-actions"> <?php do_action( 'bbp_theme_before_forum_subscription_action' ); ?> <?php bbp_forum_subscription_link( array( 'before' => '', 'subscribe' => '+', 'unsubscribe' => '×' ) ); ?> <?php do_action( 'bbp_theme_after_forum_subscription_action' ); ?> </span> <?php endif; ?> <?php do_action( 'bbp_theme_before_forum_title' ); ?> <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a> <?php do_action( 'bbp_theme_after_forum_title' ); ?> <?php do_action( 'bbp_theme_before_forum_description' ); ?> <div class="bbp-forum-content"><?php bbp_forum_content(); ?></div> <?php do_action( 'bbp_theme_after_forum_description' ); ?> <?php do_action( 'bbp_theme_before_forum_sub_forums' ); ?> <?php bbp_list_forums(); ?> <?php do_action( 'bbp_theme_after_forum_sub_forums' ); ?> <?php bbp_forum_row_actions(); ?> </li> <li class="bbp-forum-topic-count"><?php bbp_forum_topic_count(); ?></li> <li class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? bbp_forum_reply_count() : bbp_forum_post_count(); ?></li> <li class="bbp-forum-freshness"> <?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?> <?php bbp_forum_freshness_link(); ?> <?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?> <p class="bbp-topic-meta"> <?php do_action( 'bbp_theme_before_topic_author' ); ?> <span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span> <?php do_action( 'bbp_theme_after_topic_author' ); ?> </p> </li> </ul><!-- #bbp-forum-<?php bbp_forum_id(); ?> --> <?php } ?>Not tested but should work, if not then might be another bbpress plugin overwriting the template – come back
In reply to: Not set number of answers on bbpress forumok, the code does not allow for pagnination if you have nested replies allowed in the forum settings.
That is just the way the code is written, I am not an author of the code.
In reply to: Not set number of answers on bbpress forumPut this in your child theme’s function file – or use
add_filter( 'bbp_get_replies_per_page', 'rew_replies'); function rew_replies () { $replies = 5 ; return $replies ; }In reply to: Remove form post after 10 dayshmm… not sure what to suggest next
In reply to: Not set number of answers on bbpress forumI would suggest you reverse the order for answers, as pagination will not solve it.
This may work
In reply to: Not set number of answers on bbpress forumyou want sub 10 hour response on a sunday ?????
In reply to: Removing Forum Page From WP Websiteenable bbpress
then
dashboard>tools>forums>reset forums
Then decativate and delete bbpress and any dependent plugind
In reply to: Where Do I Put This?sorry, that is usually theme specific, so beyond help here
In reply to: Remove form post after 10 daysso did you load this as a plugin eg
Save this file as ‘close_old_topics.php’
Compress/zip this file, so you have a zipped version.
then in worpress go to
Dashboard>plugins>add new and click ‘upload’ and then upload the zipped file you saved above, and then activate.