Forum Replies Created
-
bbPress v2 does not have a bb_posts database table , that is in bbPress v1 standalone. Which is what @netweb is referring that you are trying to import into the old v1 version even though your suppose to import to the latest version.
All of bbPress data is stored inside of the WordPress database tables.
In this guide I explain it.
Go through some common troubleshooting steps.
In reply to: Sidebar as you seen on bbPress.orgIts custom code to this site.
There might be some tutorial, I think someone linked to it before on here but I can’t remember where ti was.
This plugin has something close , but it has no styling.
In reply to: userpro bbpress avatar displayContact the plugin authors support forum. IF i remember correctly they have special templates for compatibility with bbPress.
In reply to: Admin only able to create new topic no other users!!You might need to create a new user role for users to default as and set their capabilities to create replies but not create topics.
In reply to: About the page of Forum Replies CreatedDoes your replies created page not work like that??
Or are you trying to do some custom functionality??In reply to: First post not showingYeah I just thought those two plugins would work because you are going through a similar situation that the function usually fixes.
Do not know what to suggest next, you might have to hire a developer to create you a plugin if you want wishlist to work with bbPress.
In reply to: Help.you need that information to know what file it is
hovering over “what the file” it says something like example.php , where example is the file you need to modify.
I will explain this more when I have a chance in the guide.
If you find that this guide is not helping you, if you have any ideas of improvements to the guide , or any information that might seem confusing to you , then please say exactly what because this guide is a very important guide for theme compatibility.
And if any more help with this reply back.
In reply to: First post not showingThe wishlist member plugin has known incompatibilities with bbPress
You can try these two plugins and see if it fixes the issue
In reply to: “Started by” weird line break and restyling topicsno problem
In reply to: Visual EditorPlease go through some of the troubleshooting steps listed here.
and What schmoo and I were saying is that you can use both of the plugins we mentioned to extend/show the visual editor.
to display the visual editor make sure you have configured the setting in settings > forums in the WordPress back-end.
In reply to: Allow HTML from usersjust use autoembed links in settings > forums
when the user places the link in the reply content area that link will automatically become a video when posted.
In reply to: Problems overwriting defaultsUse this code instead for what you want
//custom text for subscribe links function rkk_forum_subscribe_link() { $args['subscribe'] = esc_html__( 'Subscribe to this forum', 'rkk' ); $args['unsubscribe'] = esc_html__( 'Unsubscribe to this forum', 'rkk' ); return $args; } add_filter('bbp_before_get_forum_subscribe_link_parse_args', 'rkk_forum_subscribe_link' );
//custom text for topic subscribe links function rkk_topic_subscribe_link() { $args['subscribe'] = esc_html__( 'Subscribe to this topic', 'rkk' ); $args['unsubscribe'] = esc_html__( 'Unsubscribe to this topic', 'rkk' ); return $args; } add_filter('bbp_before_get_topic_subscribe_link_parse_args', 'rkk_topic_subscribe_link' );
In reply to: User guide for site visitors?If you do write a guide or start to write a guide.
You can email me your ideas , or if you want to start writing it out soon you can write in a Google Doc Spreadsheet and email it to me , so I could put it in the codex.
Email anything you want in the COdex, you find my email in this link.
In reply to: Topic exceptsI think if you are using the bbPress login shortcode this is the hook if you need a hook
In reply to: SMF Import to bbPresshow is it embedded?? with bbcodes??
In reply to: cannot edit topic and problems creating topicPlease go through some troubleshooting steps here.
THis guide will be improved in the next few days.
Also you most likely will not need to do the advanced troubleshooting.
In reply to: Missing HTML Formatting Buttonsthis just looks like a CSS issue.
I think it is just that your buttons text are white by default in your theme and it is overriding the bbPress styles.
you can try this CSS and see if it works but you would need to find the issue using some developer tools in your browser or you can create me a subscriber/participant acount to look at it.
If you want to create me an account you can send the login details to my email here.
In reply to: 502 Error on Replies PageWhat replies page?
Did you try any of the troubleshooting steps listed here
I do not think you have to do the advanced troubleshooting though.
In reply to: Forum closed and topicI do not think you could do this at this time.
Closing Forums stops the creating of new topics and replies in the forum,
you should have posted that on gist.github.com or at least pastebin so that users do not have to scroll through all that.
As for importing have you tried a creating a custom import using the example one in the bbPress plugin
https://codex.bbpress.org/import-forums/custom-import/And for Karma system you might have to look into a WordPress plugin like MyCred.
And for importing private messages , I am not sure how that is going to work, but there is a lot of Private messaging plugins for WordPress like BuddyPress.
In reply to: “Started by” weird line break and restyling topicsI do not see the issue on your site currently.
I do see these weird avatar image placement though.
Add this CSS to fix that issue.
#bbpress-forums p.bbp-topic-meta img.avatar { display: inline !important; }
In reply to: About the page of Forum Replies Createdlike this page??
https://bbpress.org/forums/profile/naoyoshi/replies/
It should only show your replies.
In reply to: forums page not working rightcreated per startup instruction.
Where did you get the information from??
As for your theme , if you are using Genesis you can install a plugin to help.
But some other themes you have to create a template for bbPress
follow this guide
In reply to: Registration shortcode no password fieldonce i went into bbpress settings and set a register page and activation page.
This sounds like you went to BuddyPress’s settings, you can use BuddyPress’s register form.
For a login page you can place the bbPress login shortcode in a page and it should work.
For a lost password page I guess you can use the lost password shortcode but I do not know if it works correctly or not, or it just redirects to the WordPress lost password form.