Forum Replies Created
-
In reply to: Add content to first reply only
ok, get the topic ID, and then in your hook to
bbp_theme_before_reply_content
look up whether the topic has had any replies by using$count = get_post_meta ($topic_id, '_bbp_reply_count' , false)
If $count=0, then there have been no replies, so this is the first.
In reply to: Change User Role not workingI’m just a user of the software, so can’t tell you when
In reply to: Change User Role not workingthanks for posting this – it is a known error – in essence the bottom filter overrides the top – I think 2.6 will fix this when issued, but it is amazingly rare that someone uses this feature, but appreciate you reporting it
great – thanks for posting that – really appreciated !
would be great if you posted the answer to help others
In reply to: User Subscription gets lostyou can report bugs to
In reply to: Create a forum which works like “Ask the expert”In reply to: Create a forum which works like “Ask the expert”If you know of plugins that do this – then what is your question ?
In reply to: User Subscription gets lostok, I’d suggest you go to RC7 and see if that fixes
In reply to: User Subscription gets losthave 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 ); }