Jared Atchison (@jaredatch)

Forum Replies Created

Viewing 25 replies - 51 through 75 (of 703 total)
  • @jaredatch

    Member

    Currently that’s not a feature we have yet, though it’s on our radar. Hopefully it’s something that will be added in 2.4 or 2.5.

    https://bbpress.trac.wordpress.org/ticket/459

    In reply to: Fancy Editor missing

    @jaredatch

    Member

    The “Visual mode” of the fancy editor is cumbersome and was causing issues for many users, so it was removed in bbPress 2.3.1.

    You can turn it back on with this plugin https://wordpress.org/extend/plugins/bbpress-enable-tinymce-visual-tab/

    @jaredatch

    Member

    What is the exact code?

    In reply to: recent topics widget

    @jaredatch

    Member

    Thanks for reporting. Looks like it is indeed a bug. Hopefully we can get a fix in 2.3.2.

    https://bbpress.trac.wordpress.org/ticket/2319

    @jaredatch

    Member

    I’m confused. Are you posting HTML that you want to _parse_ or are you posting HTML that you want in a code block like:

    
    <html>
       <title>Howdy!</title>
    </html>
    

    @jaredatch

    Member

    I’d make sure your theme (or a plugin) isn’t disabling wpautop

    https://codex.wordpress.org/Function_Reference/wpautop

    @jaredatch

    Member

    When you copy and paste the link out of the browser window, often times that causes the editor to auto hyperlink it if you are pasting the link in the “visual” tab.

    Either make sure the link isn’t active or paste the link in the text tab.

    @jaredatch

    Member

    What user role are you? What HTML are you posting? Are you putting this code int he visual tab or the text tab (pre 2.3.1)?

    @jaredatch

    Member

    I’m going to take a guess and say you are logged in inside Chrome so it’s forwarding you home, and you aren’t in the others which is why you see the form.

    I’m using Chrome and the registration form comes up for me 🙂

    @jaredatch

    Member

    Plugin that will add back the visual tab to the editor: bbPress Enable TinyMCE Visual Tab

    No code required. Just activate and you’re done.

    @jaredatch

    Member

    Copy:

    wp-content/plugins/bbpress/templates/default/css/bbpress.css

    to:

    wp-content/themes/[YOUR-THEME]/css/bbpress.css

    And that’s all it takes 🙂

    bbPress will auto-detect the CSS file in your theme and use that instead of it’s own.

    @jaredatch

    Member

    Hmm, not sure why that would get screwy but it seems to happen.

    Try going to Tools > Forums > and checking/running “Remap existing users to default forum roles”.

    @jaredatch

    Member

    This is common when using heavily customized/massive themes or theme frameworks.

    Unfortunately for someone like us looking in, it’s really hard to even tell you where to start. There could be 1,001 different things that are causing things to explode under the hood. To top it off we don’t have access to the theme anyways.

    The particular theme you are using is _massive_. I’m fairly confident the theme is likely the issue here, but to be sure you should activate TwentyTwelve and see if that fixes the issue. Assuming it does, then you know the problem is indeed with your theme, at which point I’d ping the developer and see if he knows what’s up.

    @jaredatch

    Member

    Did you add any new plugins recently?

    @jaredatch

    Member

    At this moment there is not a shortcode that will do this. I assume you meant “Create New Topic”?

    You could easily create a link that goes to the editor on whatever forum you want.

    Such as linking to http://yoursite.com/forums/forum/some-forum/#new-post.

    @jaredatch

    Member

    That article is out of date and is no longer correct for the newly released 2.3.x.

    With current version of bbPress, you only files that need to be in your theme are the files you plan on changing.

    For example if you want to tweak the CSS, then you would copy the bbpress/templates/default/css/bbpress.css to [your-theme-directory]/css/bbpress.css and bbPress will automatically use your version instead.

    This goes for almost all the bbPress template files. For example, let’s sayo you want to edit the bbPress search page. You would copy bbpress/templates/default/bbpress/content-search.php to [your-theme-directory]/bbpress/content-search.php.

    The only time you would really need to copy and create the entire bbPress template would be if you need it to be theme independent, eg distribute it.

    Hopefully that makes some sense 🙂

    @jaredatch

    Member

    I can’t help because I’m not familiar with the bbPress pre-2.x releases, but I must ask, is there a reason you want to use the stand alone version over 2.x?

    In reply to: WP org vs com

    @jaredatch

    Member

    If you’re interesting in bbPress you’ll want to go the WP.org route 🙂

    @jaredatch

    Member

    I’d try contacting the developer, Yoast, and see if the can add a setting to disable the WP SEO plugins if bbPress is detected (is_bbpress()), which would allow you bbPress to use its own breadcrumbs on bbPress pages and use WPSEO breadcrumbs on all other areas of the site.

    Alternative he could also make his plugin disable the bbPress breadcrumbs all together.

    In reply to: can't access BBpress

    @jaredatch

    Member

    Take a peak into this thread. Try the fix that jjj mentioned and see if that helps.

    @jaredatch

    Member

    What plugins do you have installed?

    A good test to run is to temporarily activate TwentyTwelve (theme) and see if that fixes the issue. Doing this will at least let you know if the problem lies within your theme or not.

    @jaredatch

    Member

    You’ll likely see a plugin popup in the WordPress.org repo soon that will prevent the need to deal with any code directly.

    In reply to: can't access BBpress

    @jaredatch

    Member

    Can you let us know what plugins you are running? Are you running any membership based plugins such as WistList Members?

    @jaredatch

    Member

    The info below does not address the OPs question for performance, but rather is an answer to the questions regarding emails being sent out all together.

    This does happen unfortuantly and it’s usually do to the server setup. We see this a lot with shared hosting.

    The WordPress function that handles email, wp_mail() (more info here), uses the PHP mail function to send it’s emails (bbPress uses this as well). Many hosting environments have a throttle on how many emails can be sent using their SMTP servers, which are used by default.

    The solution is to use a different SMTP server/service to send out the emails and not rely on the default one hosting provider’s server uses.

    The first thing you will want to do is install one of the many SMTP plugins that are available on the WordPress.org plugin repository. I’ve used WP SMTP before without any issues.

    After that’s installed you’ll want to configure that plugin to use your new SMTP service.

    Sometimes you can ask your host for this information and by just using their SMTP service through the plugin will fix the issue. Other times it doesn’t, which means you’ll need a new SMTP service all together.

    There are a ton of great paid SMTP services available, most should be suitable. SendGrid seems to be a popular one, which gives you 40,000 emails/month for $10.

    It’s not ideal that emails don’t always “just work” out of the box, however it almost always boils down to the web host. Especially when some emails send out fine but others don’t go through.

    In reply to: bbbPress performance

    @jaredatch

    Member

    Well for staters it’s used here.

    It can scale assuming you have the knowledge (or hire someone) to scale your stack/server as needed.

Viewing 25 replies - 51 through 75 (of 703 total)