Forum Replies Created
-
In reply to: Create new column for topic posts
Yes you would need to adjust some CSS styles from the forum.
The styles specifically are these, although these will change when you reach a specific device width. You will need to adjust the width taking some out of the title section most likely. You might want to also look into adding another column heading for views, by copying the loop-topics.php template into your child theme.
li.bbp-forum-info, li.bbp-topic-title { float: left; text-align: left; width: 55%; } li.bbp-forum-topic-count, li.bbp-topic-voice-count, li.bbp-forum-reply-count, li.bbp-topic-reply-count { float: left; text-align: center; width: 10%; } li.bbp-forum-freshness, li.bbp-topic-freshness { text-align: center; float: left; width: 22%; }
In reply to: Images won’t embed / edit the edit logThe images might depend on what you are doing on the original site, I have tested it out on my local server and it works fine then doesn’t every now and then. Right now it works fine.
In reply to: Forum template styles forum rules best practice1. Robins plugin uses the same file that has been tossed around these forums for the past 2 or so years.
https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout
4. You should probably just keep them, as they help with moderation on the frontend. There is a link in the description to show all posts including ones that may be pending moderation. The yellow ones just help notify users whats up, so if they cannot post for soem reason and there is no notice, they would not know what the issue is.
Here is a link to the code though.
5. If you are minifying your CSS, then I say do not worry about this feature.
I don’t really think there is a best practice for forum rules/admin content, it is whatever works for you and makes most sense in the end.
In reply to: bbpress and multiple levels of categoriesWhat freshness tweak are you talking about? If it is from a plugin, contact the plugin author on their respective support forums.
These are all the files and code I had in my custom child theme I created from Hueman. I also added some font-size CSS styles too.
https://gist.github.com/robkk/8b323aa0994e87a476054a4f115d1141
In reply to: How to not spam every user from my imported forumsThese are not BuddyPress notifications, but are in fact bbPress email subscriptions right??
Yeah you can’t do what you want now using that specific plugin, you can using widget logic, or creating a bbpress specific sidebar for all the widgets you want/not want to display on bbPress pages.
Contact the display widgets plugin author to possibly add this feature to hide/show widgets on bbPress user profiles, and maybe specifically the edit profile page. All they would need is just use these supplied bbPress conditionals.
bbp_is_single_user_edit() bbp_is_single_user()
In reply to: Edit Profile 404 errorIf the edit profile link menu comes from the Robins plugin, it may not be BuddyPress profile compatible.
Not entirely sure, post this on his plugins support forum.
In reply to: twitter questionsThere are a ton of social login plugins that will work, just search for them here.
There are plugins that can autopost bbPress topics to twitter like bbp-tweet, and many other different ways like using Jetpack or NextScripts: Social Networks Auto-Poster.
Allowing an anonymous forum, but allow twitter social registration to your site…making sure that the thread posters topic is created on the thread posters twitter page, and each reply post reply to that users twitter page post…all sounds like custom development, and you should try to find a developer to create this for you.
In reply to: Modify the register pageThe last three items are probably added by some plugin that hooks into the registration form. bbPress’ registration form template uses the same hook as the WordPress default registration form, so any plugin that hooks into one will hook into the other.
Its a dynamic page, and it does not really have an ID like you want. It has an argument at the end of specific page url for each members ID, then /edit for the edit profile page specifically.
Or another possible pinch point is the Tool’s kits option to remove css from non bbpress pages
the bbp toolkit plugin just dequeues the bbPress default stylesheet if the page is not a bbPress one. Here is the function for that feature.
function bbptoolkit_unqueue_bbp_scripts() { if( ! is_bbpress() ) { $bbptoolkit_rem_defstyle = get_option('bbptoolkit-rem-defstyle', false); if ($bbptoolkit_rem_defstyle) { wp_dequeue_style('bbp-default'); wp_dequeue_style('bbp-default-rtl'); } } } add_action( 'bbp_enqueue_scripts', 'bbptoolkit_unqueue_bbp_scripts', 15 );
This may not be the conflict as I think robins plugin doesn’t mess with the default stylesheet in bbPress. So it might be something else.
This is the bbpress.php file that you would need and its required code.
https://gist.github.com/robkk/a89e6cff104f70556f52c6df3f6b69b0
This is the custom CSS you will need.
.bbpress .main-inner, .bbpress .main { background: none !important; padding-right: 0 !important; padding-left: 0 !important; }
This will not work for pages with bbPress shortcodes though.
But you can work around that since most shortcodes are supposed to be placed in pages, you can create another template just for full width layouts in your theme. You can use this whenever you create a new page and select the template to use for your page.
To create a full-width template, you can literally just copy the bbpress.php file I created for you, rename it to full-width.php, put it in your child theme, now you need to edit the file and place
<?php /* Template Name: Full-Width */ ?>
right above
<?php get_header(); ?>
You will need more custom css for any page using this template in your theme and it should be
.page-template-full-width .main-inner, .page-template-full-width .main { background: none !important; padding-right: 0 !important; padding-left: 0 !important; }
If you plan to use both, just combine the two custom CSS statements, and now you should be good to go.
In reply to: Add description for each topic in list@aaronbennett2097 sounds like you want something like this?
function rkk_topic_description() { $excerpt = bbp_get_topic_excerpt(); echo '<div style="text-align:left"><p>'.$excerpt.'</p></div>'; } add_action('bbp_theme_after_topic_title','rkk_topic_description');
In reply to: smiley emoticons@khunmax WordPress has smilies and emoji included in it, but if you need a plugin to customize the images used for each text smiley
:)
or full text output:smile:
, then use WP-MonaLisa. So as long as you just use custom images for the default full text and smiley text to output some custom smilies and images, it will fallback to the normal WP emoji, any custom ones will not fall back.https://codex.wordpress.org/Using_Smilies
https://codex.wordpress.org/EmojiIn the future you might need to use a search and replace plugin to revsolve any custom smiley outputs that might just output something like
:custom_smiley:
:)
🙂In reply to: Alert on all submissionsMaybe try this plugin. There are other plugins that will do something similar for other user roles too.
In reply to: Per user moderationbbPress only uses the comment blacklist not any other settings like the one you are trying to use.
If you do not want to use bbPress moderation there is also some fork around coupled up with other features in a plugin called FV bbPresst Tweaks.
In reply to: Topics not separating into pagesYou might need to ask Avada support since this is coming from your theme.
In reply to: Topics not separating into pagesI think the breadcrumbs and titles are removed for the custom forum layout in your theme but I am not entirely sure. What setting are you configuring for this?
Edit: Yeah its not the theme since in Avada it should have show the titles and breadcrumbs in a section together.
In reply to: Topics not separating into pagesHaving threaded replies enabled in Settings > forums will currently in this state of bbPress disable a topics reply pagination.
In reply to: Problems overwriting defaultsYeah its weird how the topic subscribe links are having issues now??
I have just completed a full vanilla install on bbpress, including db optimize and runnning delete bbp roles plugin.
Using the delete bbp roles plugin on a fresh installation is probably what caused the issue.
In reply to: Images won’t embed / edit the edit logTo customize the revision logs display, you will need to use the same filter used in the above function Pascal linked to.
A BuddyPress dev said he has worked on something like this, a quick and somewhat dirty approach that might not be so much user friendly (it could change though), don’t know a time frame when the plugin he created will be released for users.
In reply to: How to enable swearing in Forums?Its probably some plugin hooking into the WordPress comment blacklist that is added a custom list of words to filter out. bbPress uses the WordPress comment blacklist too. Read this post I created awhile back to understand what could cause the issue on your site.
https://bbpress.org/forums/topic/strange-problem-with-profanity/#post-174953