Stephen Edgar (@netweb)

Forum Replies Created

Viewing 25 replies - 1,976 through 2,000 (of 3,352 total)
  • In reply to: Stylesheet Issues

    @netweb

    Keymaster

    @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

    @netweb

    Keymaster

    @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 Issues

    @netweb

    Keymaster

    It 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' />

    @netweb

    Keymaster

    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.

    @netweb

    Keymaster

    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/2481

    We 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

    @netweb

    Keymaster

    @focallocal Thanks, looking at your code now.

    What software package and version are you using? eg. XAMPP 1.8.3

    @netweb

    Keymaster

    …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.

    @netweb

    Keymaster

    We 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. πŸ™‚

    @netweb

    Keymaster

    I 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 Issues

    @netweb

    Keymaster

    ps. 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 Issues

    @netweb

    Keymaster

    Yes, 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/2481

    If not bbPress 2.5.1 is not far away….

    @netweb

    Keymaster

    I 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 bbPress

    @netweb

    Keymaster

    Somehow, 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 from 100 to 1 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_startin thewp_optionsdatabase 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 to 100 and start again so the remainging 200k posts are not imported one by one.

    @netweb

    Keymaster

    Take a look at the Data Parameters of WP_Query https://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters

    You 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' );

    @netweb

    Keymaster

    Edit: Just read your reply on Trac

    Also check if you have a bbpress.php file in your child theme folder.

    @netweb

    Keymaster

    What 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?

    @netweb

    Keymaster

    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 πŸ™‚

    @netweb

    Keymaster

    I 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/

    @netweb

    Keymaster

    @netweb

    Keymaster

    There 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 Issues

    @netweb

    Keymaster

    You 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?

    @netweb

    Keymaster

    I am pretty sure you are looking for the widgets https://codex.bbpress.org/widgets/

    @netweb

    Keymaster

    @kentlii Thanks for the update πŸ™‚

    @netweb

    Keymaster

    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.

    @netweb

    Keymaster

    @svcslzysh Can you please give us some more information please.

    Can you try disabling all your other plugins and stitching to the Twenty Thirteen theme.

    Does the issue still exist now?

    If it is fixed start re-activating your other plugins one by one until you find a conflict?

    What is the conflicting plugin and/or theme?

    Details are here: https://bbpress.trac.wordpress.org/ticket/2482

Viewing 25 replies - 1,976 through 2,000 (of 3,352 total)