Forum Replies Created
-
In reply to: No Forum subscriptions (update to 2.5)
@freewpress What happens when you use the standard Twenty Thirteen and/or Twenty Twelve theme?
In reply to: Stylesheet Issues@thetechnoman Are you using custom bbPress templates in your theme?
It’s hard to tell by your screenshot of what is or is not broken, to me that looks fine but I have no idea what it used to look like, can you give me some more information and/or screenshots of 2.4 vs 2.5 please.
In reply to: Stylesheet Issues@focallocal Cool, it looks like the patch has worked for you
The W3 (and any cache plugin for that matter) are known to be funky with bbPress, there are a few discussions here on bbpress.org if you want to know more on that.
In reply to: Stylesheet IssuesIt looks like you have patched the file correctly.
Can you view the source and get the stylesheet path and paste it here:
eg.
A ‘failed’ example
<link rel="stylesheet" id="bbp-default-css" href="http://localhost/wordpress37/wp-content/C:devhtdocswordpress37wp-contentpluginsbbpress/templates/default/css/bbpress.css?ver=2.5-5199" type="text/css" media="screen">
A ‘working’ example:
<link rel='stylesheet' id='bbp-default-css' href='http://127.0.0.1/wp-content/plugins/bbpress/templates/default/css/bbpress.css?ver=2.5-5199' type='text/css' media='screen' />
In reply to: Recent update seemed to break all my titles?Sorry, I forgot to mention I did disable all plugins with no luck. Same results. I did not try twenty thirteen theme. Tried that this morning and still have the same results.
Thanks for trying this
Some more info in case any of these things did some damage.
Plugins: Akismet, Google Analytics for WordPress, Jetpack by WordPress.com, Login With Ajax, Register Plus Redux, WP-reCAPTCHA β (disabled), WP-Syntax
None of these should remove the titles from your posts particularly as they are disabled.
WordPress SEO is different though, I am not familiar with it but does this plugin DOES alter titles of posts if I remember correctly.
Does WordPress SEO keep any logs of what content it has altered? If so can check these logs to see if it changed your titles.
Are you hosting this yourself on Windows?
If so we have a patch for bbPress 2.5.1 here
https://bbpress.trac.wordpress.org/ticket/2481We have had no known issues of this for bbPress 2.4
Who is your webhost provider and/or what software package and version are you using locally? eg. XAMPP 1.8.3
In reply to: Stylesheet Issues@focallocal Thanks, looking at your code now.
What software package and version are you using? eg. XAMPP 1.8.3
In reply to: Add new item to search criteria drop down list…the search members (filters) has drop downs. Is this a part of the BBpress plugin?
No, this not part of bbPress, it is part of your ‘Sweet Date’ theme.
In reply to: Forums page format is not workingWe have a patch ready to ship with bbPress 2.5.1
https://bbpress.trac.wordpress.org/ticket/2481
If you could test that patch that would be great, I have tested it on XAMPP 1.8.3 , Apache, IIS and a couple of other systems but weβd like some feedback on the patch before we release 2.5.1 to make sure we havenβt broken something else. π
In reply to: Forums page format is not workingI use XAMPP locally and I never had this issue, I am using XAMPP 1.8.3 from http://www.apachefriends.org/en/xampp.html
What is “Window Xampp Apache (3.1.0.3.1.0)” and where can I find it to download and test with?
In reply to: Stylesheet Issuesps. If you could test that patch that would be great, I have tested it on XAMPP, Apache, IIS and a couple of other systems but we’d like some feedback on the patch before we release 2.5.1 to make sure we haven’t broken something else. π
In reply to: Stylesheet IssuesYes, it is a bug in bbPress 2.5, we have a patch in and ready for bbPress 2.5.1
Details are here if you want to apply the patch yourself:
https://bbpress.trac.wordpress.org/ticket/2481If not bbPress 2.5.1 is not far away….
In reply to: phpbb3 import incomplete and switches authorsI haven’t forgotten π I am working on a couple of things to help this without relying on doing it directly with phpMyAdmin and SQL queries which is pretty much the only way at the moment.
In reply to: SMF Import to bbPressSomehow, I just notice or suspecting that.. it might be related to either :
1 β post with custom BBtag.
2 β post/topic that has Poll option.What is the custom ‘BBtAg’ is it ‘BBtag’, I can try to replicate this as we do use a 3rd party library to convert some BBCode and it could be a conflict there (shouldn’t be but could be)
I will also setup a ‘poll’ to try the import with.
Another thing I haven’t tried yet though this just came to me as an idea, when the conversion stops change the value of
Rows Limit
from100
to1
and click start again, causing it to go one row at a time.This way when it stops and won’t go any further you should be able to look at
_bbp_converter_start
in thewp_options
database and add a1
to that number. This in affect will make the converter start again on the next row rather than the row it is failing on.Once it gets past the problematic topic, you could click
stop
again, change it back to100
and start again so the remainging 200k posts are not imported one by one.In reply to: Display topics younger than XTake a look at the Data Parameters of
WP_Query
https://codex.wordpress.org/Class_Reference/WP_Query#Date_ParametersYou can also create custom views in bbPress eg.
function ntwb_register_custom_views() { bbp_register_view( 'popular-topics', __( 'Popular Topics' ), array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value_num' ), false ); bbp_register_view( 'unpopular-topics', __( 'Unpopular Topics' ), array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value_num', 'order' => 'asc' ), false ); bbp_register_view( 'random-topic', __( 'Random Topic' ), array( 'orderby' => 'rand' ), false ); bbp_register_view( 'closed', __( 'Recently Closed' ), array( 'post_status' => 'closed' ), false ); } add_action( 'bbp_register_views', 'ntwbc_register_custom_views' );
In reply to: No Forum subscriptions (update to 2.5)Edit: Just read your reply on Trac
Also check if you have a
bbpress.php
file in your child theme folder.In reply to: Forums page format is not workingWhat web server are you using? Windows (IIS)? (If so you can apply this fix manually or wait for bbPress 2.5.1.
If not can you give us some more specifics on how your website is setup?
So this is already being used here while it isnβt available in the existing core?
Yes and No π That’s all I am going to say at this stage π
In reply to: bbPress 2.5 + bbPress Protected Forums issueI am not familiar with ‘bbPress Protected Forums’ plugin, it might be best to also ask the question in their support forums https://wordpress.org/support/plugin/bbpress-protected-forums
You can find older versions of bbPress to download here https://wordpress.org/plugins/bbpress/developers/
In reply to: Add item to search criteriaClosing this topic as a dupe of https://bbpress.org/forums/topic/add-new-item-to-search-criteria-drop-down-list/
In reply to: Add new item to search criteria drop down listThere is no ‘drop down’ fields in the bbPress search.
I think you might be using a plugin that gives you this option and you would need to contact that plugin’s author and/or support forums.
In reply to: Stylesheet IssuesYou should not have an issue using XAMPP, that said though can you deactivate bbPress, delete bbPress and install it again (You won’t lose any bbPress data).
How is it now?
In reply to: Can't find these pluginsI am pretty sure you are looking for the widgets https://codex.bbpress.org/widgets/
@kentlii Thanks for the update π
In reply to: No Forum subscriptions (update to 2.5)https://bbpress.trac.wordpress.org/ticket/2480 has been updated with some more info.
Also if you have a custom
bbpress-functions.php
in your theme that also needs to be updated.