Forum Replies Created
-
In reply to: Tiny MCE don't work
You didn’t post your URL, how am I suppose to look? 😛
In reply to: Fancy editor is not visible on Replay@aleXka – you have a error in your js – http://cl.ly/image/2G3o3V3g1X25
As mentioned, if your editor is screwing up, it’s likely a JS issue (like I just pointed out above).
Deactivating your plugins should help find the culprit or switching themes back to a default WP theme.
In reply to: Tiny MCE don't workUse firebug or chrome dev tools to do some inspecting. Looks like you have a javascript error that’s likely caused by a plugin or your theme.
In reply to: Auto signatureWow, such great feedback. Thanks.
In reply to: Allow HTML from usersThe previous version of bbPress used the WordPress array of allowed tags. This meant when you installed a TinyMCE plugin for WordPress it also worked in bbPress.
We changed that now, which is why your plugin doesn’t work. bbPress now has it’s own allowed tags setting and doesn’t necessarily use what WordPress is using.
While it breaks some implementations (such as the plugin you’re using), in the long run it was the way to go. Now bbPress and WordPress can have different tag settings, before they were stuck using the same, which in some cases would be a huge problem.
You need to whitelist any tags your uses will be using via the filter mentioned above. That will fix the issue you’re having.
In reply to: Allow HTML from usersAs of ~2.3, the “allowed tags” are filterable within bbPress.
Look for the filter
bbp_kses_allowed_tags
. It’s inincludes/common/formatting.php
.In reply to: Duplicate this exact theme/layoutAt the moment no, it’s not available. I’ll talk to jjj about the possibility of releasing the theme (or a version of it) to the public.
In reply to: Auto signatureThere is a bbPress signature plugin. Search the WordPress.org plugin repository and you should find it.
In reply to: Allow HTML from usersFor security purposes it is not allowed.
Otherwise users could do some very malicious things such as iframes that trigger js attacks, etc.
It’s the same reason why WordPress does not allow HTML in post comments.
In reply to: Private messagesIf you need messaging, activate BuddyPress and enable the messaging component.
We have no plans to bring private messaging to bbPress.
In reply to: Description/Intro text on top of Forum pageCopy
wp-content/plugins/bbpress/templates/default/content-archive-forum.php
to
wp-content/themes/[your-theme]/bbpress/content-archive-forum.php
.Edit as you see fit. You’ll likely want to place whatever before
<div id="bbpress-forums">
.You can copy any template elements that you want/need to change to a
bbpress
folder inside your theme and bbPress will automagically use those template files instead of the default ones.In reply to: Editing to fit my themeWhat you want to do is tweak the bbPress CSS. However you don’t want to tweak the copy in the plugin because when you update it will get overriden. Here’s what you’ll want to do.
Copy:
wp-content/plugins/bbpress/templates/default/css/bbpress.css
to:
wp-content/themes/[YOUR-THEME]/css/bbpress.css
Then edit and make tweaks to the bbpress.css as needed to match your theme.
In reply to: BBpress and All in one se0 2.0The AIOSEO team is aware of it and it should be fixed soon.
https://wordpress.org/support/topic/version-20-broke-bbpress-231?replies=6
In reply to: TinyMCE editor doesn't edit so well…Hmm, strange. The plugin should trigger the download of https://downloads.wordpress.org/plugin/bbpress.zip which is 2.4 alpha (trunk).
We’ll have a look and see if the version compare isn’t running right. Thanks.
In reply to: any POLLS that will work with current versions?Unfortunately at this time there is still no poll plugin or capability that exists for bbPress 2.x.
It can certainly be done, however will require some coding knowledge and a little bit of elbow grease.
In reply to: bbpress and Skeleton Chldtheme compability?It sounds like your child theme is trying to load
bbpress_functions.php
which doesn’t exist.Go to your child theme’s
functions.php
file and comment out line 89 which is portably the culprit.Unless your theme was specifically designed to support bbPress (which honestly, most themes are not) it shouldn’t be trying to include said file so you can comment it out.
In reply to: TinyMCE editor doesn't edit so well…I think if you update bbPress using the Beta Tester plugin it should pull down trunk, which contains the fix.
Give a try and see.
In reply to: Registration/Login IssuesHave you tried turning on the “auto role” setting? That will auto assign them when they visit the site.
In reply to: No Register / Menu options displayedLook into the bbPress shortcodes that are available.
In reply to: ASCII characters in email notificationsHmm, I’m not sure what’s going on. The upcoming 2.3.2 release will have a fix for the editor issues, but I can’t say if that will the email notification problems or not.
In reply to: HTML doesn't render when copied and pastedThe upcoming 2.3.2 has a fix, until this disable the visual editor like it is by default.
In reply to: TinyMCE editor doesn't edit so well…This is fixed in the upcoming 2.3.2.
In reply to: Force all users to be subscribed to all topicsThat shouldn’t go in bbPress. Never modify the plugin, everything gets lost when you update.
It should go in your theme’s
functions.php
file.In reply to: Reproduce sandbox forum on live siteThis plugin lets you easily dump and shuffle databases back and forth. I’d give it a try (backup first of course).
In reply to: Where to adjust 'Forums' page CSS?Does you theme have the ability to set layout controls per page? Does it have hooks for that?