Forum Replies Created
-
In reply to: Can bbpress have its own theme?
@rnmartinez you can’t just use a phpbb theme for bbPress, you know different functionality for each forum system. You would have to remake the theme but for bbPress instead.
bbPress can have its own theme technically, by just using customized bbPress templates and custom styles and you can either put that in a custom/child theme or a plugin that creates a forum theme package, Robins plugin is a small example of the forum theme package thing.
In reply to: Show status label for bbPress Topics with No Replies@arutam to make the function work, counting the replies is exactly what you need to do.
Try this amd see if it works.
function rkk_empty_topics() { $topic_reply_count = bbp_get_topic_reply_count(); if ( $topic_reply_count == 0 ) echo '<span class="empty">[No Replies]</span>'; } add_action( 'bbp_theme_before_topic_title', 'rkk_empty_topics' );
In reply to: How to fix avatar and author layoutThis is a common theme related issue, where avatars are displayed in block instead of inline or inline-block. Add this CSS anywhere you can add your custom CSS like a child themes style.css file or a seperate custom css plugin.
#bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums .widget_display_replies img.avatar { float: none; margin-bottom: 0; vertical-align: middle; border: 1px solid #ddd; display: inline-block; }
In reply to: Global AccessI think with bbPress you just have forums on one site each only for right now, there is no shared content on a multi site setup.
Alright, I must of possibly not entirely understood what you are trying to change then? Sync what exactly?
In reply to: Daily most popular topic notify by emailNot entirely sure this plugn works still, but there is this still.
In reply to: Avatar/login like yours1. Its the WordPress Toolbar, used on all WordPress sites by default.
2. This plugin adds avatar suggestions, it might not be presented easily for users, but he expains it in this video.
3. bbPress by default doesn’t have the ability to upload files, for avatars that plugin I mentioned allows avatar upload.
4. You can filter the default wordPress smilies and use custom ones, their is emoji to use because of WordPress, also there a good plugin that has a feature to import phpBB smilies call WP-Monalisa.
In reply to: Trouble regaining Keymaster status – help!Also, even after the plug in is deleted the roles (Keymaster and Participant) still appear in the user list under the “Role” column, but I thought they were only associated with bbpress. Is that correct?
This is a known bug, there is some code in the codex here to use to remove the user roles whenever you are resetting your user roles. Removing the roles and reinstalling bbPress might fix this issue, if it does not, you can use this plugin to switch to another Admin temporarily and then edit your user and switch its forum role. Make sure to edit the user by clicking the edit link by the users avatar. I think there is still an issue bulk changing a users forum role from the users list.
https://wordpress.org/plugins/user-switching/
Make sure that your default role for users are Participant in Settings > Forums. Also make sure that the default blog role for your users is Subscriber in Settings > General.
If this developer only did a short job and is done, I recommend not keeping their account as Admin/Keymaster. If they are hired for a project that is not finished or is like say doing maintenance for your site for awhile, okay keep them, but you know just be cautious since this happened to your site.
Just to be sure, make sure to check out this link for more help.
https://codex.wordpress.org/FAQ_My_site_was_hackedIn reply to: Keep static content above forumYeah this makes sense since you are only editing the page you created with the forum index shortcode, the forum index shortcode only displays the forum index not embed bbPress entirely.
I say just create a bbPress.php file and add the content you want to the template.
In reply to: Loss of delete buttonYeah, you need to be able to moderate, so Keymasters and Moderators have that abilty.
In reply to: My bbpress topic layout breaksDid you check and see if this is possibly created by a function you might have used/created that is causing an error for that piece of bbPress, check to see if it is a custom bbPress theme related, or check to see if it is cache related.
In reply to: Forum Description Not ShowingYour category layout is quite different as it uses the subforum-list function and layout in bbPress, which you would need to filter to include the description like you want.
But since this seems similar to another file that I have that can create this layout, take a shot at using it instead. Take this loop-forums.php file and put it into your theme and see if it will make the layout how you want it with the forum description.
https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout
In reply to: Content Before Forum StartsWhere exactly in the forums do you want to display this.
In the default description area this might be a little too much for the default layout in bbPress. I say hire a designer and make the forum page title for each forum display nice and gold like how it is displayed, use the same font you chose to style the forum titles in bbPress (maybe in topic titles too for consistency), and keep the description similar to how you have it and just style it in bbPress using CSS. You might have to have heavily style and customize the bbPress templates to achieve a good looking layout like this. Place any bbPress templates in your child theme or custom made theme so they can easily be customized.
There is something in the codex about a bbPress forums page, but specifically it is for the forum index only not bbPress forums entirely. So it will not embed bbPress in an iframe like other forum solutions that host the forum content on their own servers.
Look into creating a bbpress.php file for your site so that all your bbPress pages will use the same template, which is what you are looking for, for this to work.
In reply to: Front End Forum CreationYou can also try this, it adds a forum form to users who can moderate bbPress profile.
In reply to: Undefined VariablesFor the first error, contact the GD bbPress Toolbox plugin support team.
For the second error, read this https://codex.bbpress.org/bbp_setup_current_user/was-called-incorrectly/
In reply to: “ERROR: YOUR REPLY CANNOT BE CREATED AT THIS TIME” ?Probably just the mojo marketplace plugin, others have had similar issues with this plugin in combination with bbPress.
In reply to: Strange Problem With Profanity@rainbowgolfcart bbPress can use words that are in your comment moderation and blacklisting input boxes in Settings > Discussion. Some plugins like the mojo marketplace plugin that @mclaurence noted can use a function and inject a custom list of words to these input boxes. Make sure to remove the interfering plugin.
https://codex.bbpress.org/moderation-and-blacklisting/
Its probably just the mojo marketplace plugin, ninja forms might be fine.
In reply to: How to import from 2.59 to 2.59 ?I haven’t tested this lately, but you could export then import 1 forum at a time using this plugin. This plugin might only import topics that are not closed, and it may autosubscribe topic authors to topics, and maybe auto favorite too.
https://github.com/pippinsplugins/bbPress-Export-and-Import
I recommend testing it out on a localhost installation.
https://codex.bbpress.org/getting-started/testing-your-bbpress-installation/creating-a-test-site/
In reply to: User search not workingWhile testing the search widget that was in the widget area in your menu, and also the forum search in the forum archive, it seems to find topics from your forum fine.
In reply to: Replies not displaying on group forumsYou are using Robin’s Private Groups plugin with BuddyPress, and using BuddyPress’ Group functionality right?? And this issue only seems to occur only for you, or users with similar roles??
Have you tried the plugin and cache troubleshooting listed on this page.
In reply to: Reply Link as a Button on the Bottom.no problem 🙂
In reply to: customize font in reply areaFor the submit button you can do something like this.
#bbpress-forums fieldset.bbp-form button { font-size: 20px !important; }
In reply to: User search not workingCan you post a link to the page on your site that you put the search form shortcodes, so I could test and see what possibly could be the issue.
In reply to: Reply Link as a Button on the Bottom.