Forum Replies Created
-
In reply to: Order of Topics
Not that I know
In reply to: Breadcrumb issue – kindashowing twice is the way bbpress likes doing it !
You can turn off the forums root slug in settings>forums
or play with this code
Don’t know how the latter would work with your plugin
In reply to: User ProfilesNot totally sure what end result you are after, but the following plugins add a topic count and 4 extra user fields
(it’s also on wordpress plugins)
(will be on wordpress plugins in a few days)In reply to: Breadcrumbs > Members directorystart by looking at
In reply to: Layout/format issuesNot sure quite how far you have progressed or not since posting, but your links don’t resolve to anything that equates to the questions.
Let us know if you still need help !
In reply to: bbPress install causes 500 internal server errorSo are you transferring – ie all the site and plugins worked on the old host, but doesn’t on the new?
If so have you discussed with fatcow?
In reply to: Can we get rid of the notify me checkbox?If you’re ok with editing file, then the template file being used is
bbpress/templates/default/bbpress/form-topic.php
Create a new directory in your theme file called bbpress and copy this file to there.
bbpress will now use that file instead
You can then edit out the notify – starts around line 155
In reply to: WP User Info in bbpressThe user-info for both topics and replies is in ‘loop-single-reply.php’ starts on line 41, and the hook for actions is ‘bbp_theme_after_reply_author_details’
In reply to: Display forum'description on the front-endlooks good, have you tried it and does it work,
If so I’ll add it to the codex
In reply to: What is it?Quite doable but not on my list of things to do.
Maybe you’d care to craft a plugin using mine as the base.
In reply to: Show WordPress role in place of bbPress roleno. 14 & 15
Thanks, I’ve updated the codex, as I say it doesn’t like switching between visual and text, and alters the code if you do. Sop thanks again it should now read correctly
In reply to: Show WordPress role in place of bbPress roleThanks, the editor has a habit of changing => and adding lines as you save it, so yes i’ll update.
In reply to: No toolbar availableTry it with the return added !
function add_tiny() { bbp_get_the_content(array ( 'tinymce' => true, )); Return $args ; } add_filter ('bbp_before_get_the_content_parse_args','add_tiny') ;
In reply to: Incomplete list of forumssuggest you try:
Repair Forums
Dashboard>tools>forums>repair forum and run one at a time
Check other plugins
Check that no other plugins are affecting this.
Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Check themes
If plugins are not the cause, then it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
In reply to: Show WordPress role in place of bbPress roleyes, go to
and no. 15 if you want to change capabilities
In reply to: [Resolved] changing the bbpress themeok, but don’t tell the wife !
In reply to: Creating new forum not loadingok, suspect server issue if you’ve done nothing before or after – lets hope that it’s now fixed !
In reply to: No toolbar availableok, I had a look, and yours is definitely trying to use the wp-editor not the tinymce one.
My forum calls
<div id="qt_bbp_topic_content_toolbar" class="quicktags-toolbar">
under the title.
Yours calls
<div id="wp-bbp_topic_content-editor-container" class="wp-editor-container">
As to why, I can’t say. You could try
function add_tiny() { bbp_get_the_content(array ( 'tinymce' => true, )); } add_filter ('bbp_before_get_the_content_parse_args','add_tiny') ;
in your functions file to force it to use the mce editor
(I haven’t tried that code so may need some editing)
The function in form-topic uses bbp_the_content which calls bbp_get-the_content – both functions are in
bbpress/includes/common/template.php
if you want a look.
I am now away for the weekend !
In reply to: [Resolved] changing the bbpress themeYou’re welcome !
In reply to: Add attachmentHaven’t used this one, but it gets good reviews
In reply to: [Resolved] changing the bbpress themeOk, I think I understand
BBpress doesn’t have a “theme”, it uses your theme to get many of it’s display elements.
If you simply want to just use bbpress, then pick a wordpress theme, and off you go !
It’s only if you want to alter how bbpress forums look or behave that you need to copy files.
bbPress uses “templates” to order and decide what to show, and a bbpress.css file to style bbpress specific elements.
Therefore you should use a wordpress theme.
Within that wrodpress theem, you create a bbpress folder for any templates you want to alter, BUT only for those, so if you don’t want to alter, then you need do nothing.
If you wish to alter the bbpress.css, you’d create a css subfolder in your theme and copy the default bbpress.css into their and then alter it, or simply add styling to your themes style.css.
@rammoskostas
Can you explain exactly what you did to import and where you imported from and was it also bbpress, and confirm that you used wp export and wp import, and which versions of wordpress and bbpress you are usingIn reply to: Voting on user-submitted postsgreat, would be good to load it to wordpress
In reply to: [Resolved] changing the bbpress themeWhen you say you copied the bbpress folder, can you detail which folder eg
bbpress/tempaltes/… etc.Can you post the exact error message, and tell us what precisely you click to get that
eg I go into dashboard then click x, and then click y, andtehn I get “bbvbvbvb vbbvbvb error”
In reply to: User unable to reply to post or create new topicInteresting – I’m not sure why askimet has got so upset with your user!
You can switch off Askimet JUST for your forum, which might be a better idea whilst you work out how to get him working again. Then at least your main site will still be protected
Go into Dashboard>settings>forums and you’ll see a setting at the bottom.
It could also be if they are posting a topic/reply with several links…
There is a setting in Dashboard>setting>discussion that says “Hold a comment in the queue if it contains 2 or more links. (A common characteristic of comment spam is a large number of hyperlinks.)” The ‘2’ is the default number that you can alter.
That would get him held as potential spam.