Forum Replies Created
-
In reply to: 502 Error on Replies Page
Ajax comments might affect this , I think , I had a theme awhile ago that would mess with reply threading if I had Ajax comments enabled. If you have ajax comments then disable that and see if it works.
Other than that , you can allow me to test how your reply threading is doing. You can create me an account for your site with subscriber/participant capabilities and send the login information to my email.
In reply to: Sidebar displays underneath the forumUse another alternative to that plugin then, like Restrict Widgets.
In reply to: BBpress Index Does Not Show All ForumsThis is a common issue
Your theme may think that the bbPress forum pages are a blog post and displays it in excerpt form.
This guide usually helps users fix this.
Need any help with this reply back.
If you can think of any improvement for the guide, then tell me some suggestions on how to improve it.
In reply to: Plugin v. built-inIf you want to develop it manually you can use any of these conditional tags for bbPress and WordPress.
https://codex.wordpress.org/Conditional_Tagsor you can use a plugin like
- Restrict Widgets
- Widget Logic
In reply to: Forum Page not displaying properlyWell there might be other ways , but it would be more complicated.
The guide just says
Find the file bbPress is using (use What the File)
Copy and rename the file to bbpress.php (use FTP)
Edit the file to your liking. (use a code editor like notepad++)The edit the file part may seem complicated but it is really quite easy , and I would help you out on this part.
If you want find the file bbPress is using and copy the content in the file to a gist.
After that I will post a link to a gist to help you out.
In reply to: Something WrongThat guide was for earlier version of bbPress ,it might be archived later for a new guide to take its place.
The following is written for version 2.2 of the bbPress WordPress plugin. Information in this tutorial may not be applicable to earlier or subsequent versions of the plugin.
See if the creating a theme section would help you.
Right now there is really just some placeholder links and text that I just wrote up real quick , so this guide might be improved in some later days.
It should help you create a child theme, understand what is usually in a theme. and how to customize it to your needs.
In reply to: Shortcode for listing topics for 2 forum idsThere is none , I think the recent topics widget could do that though.
Put the two forums ID’s into the parent id input for the widget
In reply to: View Posts if NOT Logged InIt should do this by default , if you haven’t already try these troubleshooting steps especially the plugin issue steps.
If nothing works contact your theme author
In reply to: Not getting forum notificationsDo the default bbPress notifications work when you subscribe to a topic or forum??
Test this without the wp-smtp plugin to test just bbPress.
You may need to use this https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/ , but test the default bbPress subscriptions without wp-smtp and this plugin first.
In reply to: Style bbpress content pages, remove paddingI think you solved your own issue here.
In reply to: Plugin v. built-inYou might create a child theme and just use bbPress plugins theme compatibility and transfer your templates to your own bbpress folder.
It depends on how your theme structured everything for bbPress , its CSS , and templates.
In reply to: Displaying topic replies in bbPressPost a link to your site so I can see what you are talking about.
In reply to: Center and Space Between ParagraphsTinyMCE Advanced allows you to include alignment buttons.
You might need this code, because bbPress does not support all html for participant users that TinyMCE Advanced may use for its buttons.
In reply to: Remove email id and website optionsI get a 404 not found, but you can use CSS to hide the website field.
the email field is required for post submission though.
trying to get the feature image funtionality on front end so user can have the option to upload image about the Topic
This sounds like custom development , you might need a developer to do this type of thing.
get the feature image on Widget “Forum list” Default widget of BbPress plugin
You would need to create a new “Forums list” widget mostly based off the original bbPress default widget.
Then use get_the_post_thumbnail to render your featured images
https://codex.wordpress.org/Function_Reference/get_the_post_thumbnail
https://codex.wordpress.org/Post_ThumbnailsIn reply to: Forum Page not displaying properlyThis is a common issue. Your theme is just rendering bbPress as a blog post
You need to create a bbpress.php for your site to fix this.
In reply to: bbPress url to subdomainThis custom function should remove the “forums” in the breadcrumbs.
Put it in your child theme functions.php or a functionality plugin to place custom code snippets.
function rkk_custom_bbpbreadcrumbs() { // Remove Forum root from bbPress breadcrumbs $args['include_root'] = false; return $args; } add_filter('bbp_before_get_breadcrumb_parse_args', 'rkk_custom_bbpbreadcrumbs');
In reply to: Lestifyyour theme thinks bbPress is a blog post.
usually modifying the main bbPress template will help fix this.
In reply to: 502 Error on Replies PageI replied here since you and another user seem to have the same problem.
Here is what I posted anyway.
Alright make sure both of you have gone through these troubleshooting steps.
- Deactivate all plugins except bbPress.
- Switch to a default theme
- Flush permalinks by switching to default , save , next switch to your preferred structure then save again
- Clear any cache
- Go to Tools > Forums > Repair Forums then run each repair job one at a time.
Does it Work??
If it does work now, activate your plugins one at a time and make sure to spot the one that might have caused the issue.
Not a plugin issue??
You can try these plugins one at a time to see which one helps.
http://www.rewweb.co.uk/bbpress-wp4-fix/And hopefully it works after all that.
In reply to: Parse error: syntax error, unexpected T_STRINGI meant remove the
<pre>
In reply to: Parse error: syntax error, unexpected T_STRINGremove the and
, it is their by accident when publishing.
In reply to: “New” notification until user has replied to topicSounds like custom development , you may need to hire a developer to do this for you.
In reply to: BBPress causing a 500 internal server errorAre you still having the issue??
In reply to: bbPress Moderation -> deactivate topic subscriptionsAfter it is approved and when the user subscribes to it again by clicking the subscribe link , do the topic subscriptions work well then??
In reply to: Change colouryou still have an issue??
usually people forget the
<?php
at the start of the functions.php file in their child theme?? if that is it.You can also just create a new one then see what code is screwing up your site.