Forum Replies Created
-
In reply to: Removing log of edits to forum
go to the ‘not working’ tab to investigate.
Some themes and plugins overwrite my settings, not much I can do about that
In reply to: integration of download manager with bbPressnone I know of
this one seems to have bbpress integration
In reply to: marquee in recent topicsanything is possible, but you would need to copy the existing widget, rename it, and then use that.
I suspect that if you were able to do that, you would have done it already.
sorry, too much work for free help
In reply to: Removing log of edits to forummy style pack plugin will let you do that
once activated go to
dashboard>settings>bbp style pack>topic/reply form
In reply to: Forum Centering and Login Pageok, sorry beyond help on here
In reply to: IIncrease text sizeIn reply to: Ho do I increase this font an imageIn reply to: MathML by Wiris and BbpressI think this may do it – but I’ve no knowledge of mathml, other than a quick google
This code is untested, but add this to your child theme function file or use the ‘code snippets’ plugin
add_filter( 'bbp_kses_allowed_tags', 'rew_add_mathml') ; function rew_add_mathml ($allowed) { $allowed['math'] = array() ; $allowed['mo'] = array() ; $allowed['mi'] = array() ; return $allowed ; }
you would need to add lines for other tags required.
In reply to: How to remove the freshness columngreat – glad you are fixed
In reply to: Custom Import – how to skip fields that don’t applychange this to
/* // Forum topic count (Stored in postmeta) $this->field_map[] = array( ‘from_tablename’ => ‘forums_table’, ‘from_fieldname’ => ‘the_topic_count’, ‘to_type’ => ‘forum’, ‘to_fieldname’ => ‘_bbp_topic_count’ ); */
In reply to: How to remove the freshness columnso from forums loop remove
<li class="bbp-forum-freshness"><?php _e( 'Freshness', 'bbpress' ); ?></li>
and from loop single forum remove
<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>
I’ll let you work out the topics
In reply to: Forum Centering and Login Pagetry
.archive:not(.page-one-column):not(.has-sidebar) #primary article { float : none !important; Width : 100% !important ; }
In reply to: How to remove the freshness columnI have seen this, and will respond, but I need to do paid work first. I am only a volunteer on here.
In reply to: Forum Centering and Login Pageyour theme is doing this – try this in you custom css
.archive:not(.page-one-column):not(.has-sidebar) #primary article {
float : none ;
Width : 100%}
but it may affect how other pages/post show
In reply to: Move topic and subscriptionsit could do with an action link in the topic handler, but you may wait a while for the devs to add that.
In reply to: Intranet Site Not Sending Notificationsthe issue will be site specific, and given that it is on an intranet, not one that I’d be able to investigate.
In reply to: How to remove the freshness columnhmm
you’ll need to alter several files, so general first
altering bbpress templates
You can copy all the templates across, but you only need to copy those that you want to change, and it is better just to do this, as then you know which you have altered.so if you wanted to amend loop-single-forum you would do the following
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 thisfiles
There may be others, but
loop-forums (forum headings)
loop-single forum (forum content)
loop-topics (single forum heading)
loop-single-topic (single forum content)will get you most of the way there
In reply to: Show recent forum topics on another wp sitereally hard to do – i’d suggest you’d need to look at rss feeds.
In reply to: Forum bloc with subforum listok, two things
1. you could just use the template in my
once activated go to
dashboard>settings>bbp style pack>forum templates
2. if you want to alter that,
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
then download my plugin and find template/templates1/loop-forums
copy that file to your theme and put it in the bbpress directory
In reply to: Redirection when newest replies are at the top.@ works!
I have topics setup so that most recent replies appear at the top.
so first thing is I need to know how you did this?
In reply to: How to delete BBpress databases?tools>forums>reset forums
you will need bbpress enabled to do this
In reply to: Another (0,0) sub-forum topic, kind of…?can only suggest that something else is putting it there
maybe try
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: Users gets logged into the wrong accountbbpress just uses wordpress login, so
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: downloadable filesIn reply to: downloadable filesyou mean within here, or within your wordpress site?