John James Jacoby (@johnjamesjacoby)

Forum Replies Created

Viewing 25 replies - 976 through 1,000 (of 2,358 total)
  • @johnjamesjacoby

    Keymaster

    Try visiting your permalinks page, and saving them. Sometimes they need a refresh after bbPress is installed.

    In reply to: Register on Multisite

    @johnjamesjacoby

    Keymaster

    Tried registering, and it does redirect me to some other weird site (which I assume is the main one on the network.)

    I bet it’s WordPress redirecting, since it expects the root site to manage all sign-ups. Could probably use some help figuring this out and fixing, since you have an installation exhibiting the issue already. :)

    @johnjamesjacoby

    Keymaster

    If you’re using the bbPress plugin for WordPress, it will put its data in the same database tables as your WordPress installation.

    There is an “uninstaller” in development, but I suspect most people won’t ever want to completely destroy all of their data.

    The only security concerns would be the ones you create, like allowing them to be Editors or Admins. The default user role prevents Subscribers from doing anything malicious.

    @johnjamesjacoby

    Keymaster

    Shortcodes are explicitly prevented from working inside of bbPress.

    The reason is because Shortcodes do not care who uses them in what context. If you enable them, all shortcodes will work for all users. This allows all of the bbPress shortcodes to work, inside of bbPress, which enables normal users to embed forums inside of topics and replies. No good.

    You’re on your own if you want to go down this road, but I wouldn’t suggest it. Shortcodes are transparent, and a poor experience for most users (since they are completely invisible in the UI.)

    Instead, I’d recommend building something for bbPress 2.1 (still in development) and write a plugin to tap into the power of TinyMCE.

    @johnjamesjacoby

    Keymaster

    Clearly links that don’t function isn’t normal; if everyone had this issue, 200k other bbPress users wouldn’t be using bbPress. Sorry if bbPress didn’t do what you expected, but it’s working great for many others.

    Overall, it sounds like your theme is the culprit, and that you don’t like the way it looks. That’s a design decision; one that you will need to solve on your own if you don’t like the default styling.

    bbPress has never tried to be exactly like “all the other forum software.” The philosophy is to be the smallest and simplest to use, and I think it accomplishes that pretty well inside of WordPress. If it’s missing things you wanted or expected, you are free to build those things yourself.

    Thanks for the feedback.

    @johnjamesjacoby

    Keymaster

    Thanks. Nacin’s looking into it. Someone will report back soon.

    In reply to: BBPRESS SLUG PROBLEM

    @johnjamesjacoby

    Keymaster

    WordPress runs post slugs through a sanitization filter to make sure there are no collisions. As such, no two slugs can be the same, regardless of the type of content that it is.

    @johnjamesjacoby

    Keymaster

    How can i disable HTML and/or VISUAL editor? (2.1 plugin version)

    Have you tried Settings > Forum? :)

    Unless you’re talking about conditionally toggling the mode, in which case you’re on your own to build that as a plugin, similar to WordPress.

    In reply to: 2.0.2 –> 2.1

    @johnjamesjacoby

    Keymaster

    Hey thanks! :) Good to hear it’s working out!

    In reply to: Rolling back

    @johnjamesjacoby

    Keymaster

    Probably best to fix the issues with your theme instead. bbPress 2.1 is due out soon, and then you’ll be ready for it.

    But, to answer your question… Just delete the plugin folder, and no forum/topic/reply data will be deleted.

    @johnjamesjacoby

    Keymaster

    You’re doing it exactly backwards to accomplish what you want to do.

    You do *not* “need” a page with the slug “forum” or “forums” to make your forums appear. They will just work, based on the slug you set in Settings > Forums.

    If you want the index of your “forums” to show “forums” then it’s slug needs to be “forums” and not “forum”

    If a WordPress page has the same slug as something else (“forums”), the page wins.

    (If your forum archive slug in Settings > Forums is “forums” but you have a page with the slug “forums” then the page will appear and it will be whatever the_content of that page is.)

    You can have an unlimited number of permutations on the forums to look and work. It comes with the most obvious (and working) settings out of the box.

    You can include slashes in your archive slugs, so hierarchical pages work, too.

    This part is not broken, it is not a bug. It’s two settings that you need to make match, and you’re in control of both of them on your own to operate however you want your site to operate.

    @johnjamesjacoby

    Keymaster

    This is by design, since that’s the title of that page.

    @johnjamesjacoby

    Keymaster

    There isn’t anything bbPress can do to make Akismet work any better. It’s just heuristics and monitoring. Akismet misses a ton of spam here on bbPress.org, too.

    On the Super Cache front, some improvements went in, but I haven’t spent a lot of time with them together; you probably have more than I have.

    In reply to: Forum = Archives?

    @johnjamesjacoby

    Keymaster

    Something with your theme is hardcoded to make that happen. Nothing bbPress can do about it if the theme takes over.

    @johnjamesjacoby

    Keymaster

    You can use bbp_get_forum_last_active_id() to get the post ID of the latest topic or reply. From there you’ll have to use WordPress functions to get out what you need.

    (This, of course, is assuming you’re using bbPress 2.0 or beyond)

    In reply to: URL detection fails

    @johnjamesjacoby

    Keymaster

    I suspect it is. Hashbang URLs are a pain. Will take a look.

    @johnjamesjacoby

    Keymaster

    Happy to help, but I’m only one person; can’t do it all. It’s way more helpful to everyone (and the project) if you dive into the code and figure it out in your free time rather than relying on mine.

    Also, no reason to create one topic and point to your old one. It’s spammy. Closing this one.

    @johnjamesjacoby

    Keymaster

    Do you also have the WordPress translation files where they belong? If WordPress core cannot find its translations, it will revert back to English. If that’s the problem, it’s possible you’ve had bbPress’s in the correct locations already, and WordPress was nooping it.

    @johnjamesjacoby

    Keymaster

    Time to dig in the code and look around. The /bbp-includes/bbp-template* files are a good place to start. :)

    bbPress’s template logic works almost identically to the way WordPress’s works, it just needs to do all the same things that WordPress does for specialized content. Just like WordPress has queries and conditions for posts, pages, categories, and tags, bbPress has them for forums, topics, replies, users, topic views, and front end posting and editing.

    In many ways, bbPress feels more complex because it is more complex. But, I can assure you, it’s built to the same standard and uses the same conventions as WordPress does.

    @johnjamesjacoby

    Keymaster

    Invalid header issues indicate you’ve installed the plugin incorrectly, or have an incomplete download.

    It’s possible to use the core templates, but it won’t really work the way you want it to. Why? Because when you view a single forum, you also want to view that forum’s topics. When you view a single topic, you also want to view that topic’s replies. A single flat loop isn’t enough to handle this behavior, no matter what you do.

    You can still create those templates, and they will work as you’d expect, but you’ll still need to redo some heavy lifting. Probably easier to follow the bbPress conventions for now until the whole flow makes sense.

    @johnjamesjacoby

    Keymaster

    Fixed in: https://bbpress.trac.wordpress.org/changeset/3841

    Thanks for reporting!

    In reply to: Remove toast/notice

    @johnjamesjacoby

    Keymaster

    If you don’t like what the default theme provides, make your own.

    @johnjamesjacoby

    Keymaster

    I don’t understand what you want to do.

    @johnjamesjacoby

    Keymaster

    He meant trunk. Also, no reason to open a second topic for the same issue. Closing this one.

    In reply to: 2.1 release date

    @johnjamesjacoby

    Keymaster

    It’s overdue already. It’ll be ready when it’s ready. We’ll push out some betas before hand.

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