Forum Replies Created
-
In reply to: User Subscription gets lost
have you tried this with 2.5.14?
In reply to: Deleting posts dedicated to anonymous accountno, as you need to not only delete the topics, but the associated revisions, AND reset the forum last activity meta data otherwise that will be all wrong
In reply to: increase font sizea couple of possibles
1. you haven’t closed the }
bbpress-forums .bbp-topic-content p, bbpress-forums .bbp-reply-content p { font-size: 12px; }
2. or try
bbpress-forums .bbp-topic-content p, bbpress-forums .bbp-reply-content p { font-size: 12px !important}
In reply to: increase font sizeIn reply to: How is the basic functionality so absent in bbpress?we’ve all been there, and the frustration is enormous !
Buddypress and bbpress are two different products. They work apart, and also work together, although I’ve not used buddypress so know little about it.
With 50,000 plugins and 20,000 themes everything does not always work together.
contact me via my website with your site details and issues and I’ll take a look, but won’t be until tomorrow
In reply to: What addons do this??started by is class “bbp-topic-started-by”
the heading ‘freshness’ is bbp-topic-freshness, so
.bbp-topic-freshness {
text-align : left !important ;
}In reply to: How is the basic functionality so absent in bbpress?In reply to: overwrite form-user-register.php messagecreate 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/form-user-register.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/form-user-register.php
bbPress will now use this template instead of the original
and you can amend this file.In reply to: Topics list not showingThe wp_pmxi table is related to WP ALL Import
Since this plugin is a paid plugin, you will need to contact their support for help.
In reply to: Categories and Topicsyes with bbpress you can make a post sticky or super sticky – stick or stick to front
sticky puts it at the top of its forum, super sticky put it at the top of all forums
In reply to: phpBB import (again)Fantastic, glad that through persistence you got there. I started with bbpress 4 years ago, from a Snitz database, and it took 24 attempts to get the custom importer to work, so I know the frustration you have gone through.
I can’t comment on the missing fields as I don’t know phpBB, but thanks for posting the solution, this should help others trying the import.
In reply to: Trackbacksif you have put the code in the plugin – that’s it !
On a load, the code looks to see if it is a topic or reply, and if so turns off pingbacks
In reply to: WordPress plug-in to restrict forum categoriescontact me via
In reply to: TrackbacksIn reply to: TrackbacksI just looked in trac, and fixing this is now a 2.8 goal.
However this looks like it might help
// Force ping_status on bbPress post types add_filter( 'pings_open', 'rew_force_ping_status' ); function rew_force_ping_status( $open, $post_id = 0 ) { // Get the post type of the post ID $post_type = get_post_type( $post_id ); // Default return value is what is passed in $open $retval = $open; // Only force for bbPress post types switch ( $post_type ) { case bbp_get_forum_post_type() : case bbp_get_topic_post_type() : case bbp_get_reply_post_type() : $retval = false; break; // Allow override of the override return apply_filters( 'rew_force_ping_status', $retval, $open, $post_id, $post_type ); }
In reply to: WordPress plug-in to restrict forum categoriesnot within free help, sorry, but if you have a way to allocate I could probably write some code cheaply
contact me via
In reply to: Search issuegiven that you purchased the theme, raise the issue with the theme author
In reply to: WordPress plug-in to restrict forum categoriesgreat – glad you are fixed
In reply to: Is bbPress compatible with WordPress 5?I’m just a user who helps out here, and I haven’t tested it. Most authorities (eg Yoast, Wordfence) recommend holding off on 5.0 until 5.1 with bug fixes probably around January is likely to be released.
I’ll do my test site then
In reply to: There’s a space sign before usernames in bbpresshow did you disable avatars?
In reply to: There’s a space sign before usernames in bbpressThe space is where the site is trying to show your avatar
<a href="http://logicbenchmarks.com/forums/users/logicbenchmarks/" title="View Admin's profile" class="bbp-author-avatar" rel="nofollow"></a>
which is somehow not showing – no idea why, but suspect you have code doing this
In reply to: WordPress plug-in to restrict forum categoriesIn reply to: Issue topic & reply user countI’d suggest you run the repair tools
dashboard>tools>forums>repair forums and run one at a time
In reply to: Forum Index only displaying one forumThat is very strange.
Can you contact me via the email in my website
http://www.rewweb.co.uk, as I need you to send me some info
In reply to: Sorting Forumsmy style pack plugin allows you to do that
once activated go to
dashboard>settings>bbp style pack>Forum Order