Forum Replies Created
-
In reply to: Create new column for topic posts
See it looks a lot better now. 🙂
In reply to: How are administrators and moderators NOTIFIEDYou will need a plugin for this, there will be a few plugins to choose, her is just one of them.
In reply to: bbpress Forum notificationsClosing this as it seems to be a duplicate.
https://bbpress.org/forums/topic/how-are-administrators-and-moderators-notified/
In reply to: How to place top navigation in bbpress topics?There is no pagination when you activate threaded replies, devs haven’t figured out a way to add this without causing more issues to your forums.
There is a ticket to add this feature, and the best approach seems to not work for private forums.
In reply to: Error in my homepage after BBpress installation@sergekata Here is the area you should be in for this kind of issue.
https://codex.wordpress.org/Common_WordPress_Errors#Allowed_memory_size_exhausted
I just changed them to standard single quotes.
In reply to: [bbp-topic-index] – limit topics?If you would want that feature in that particular shortcode, you would have to filter the code, and change the query.
You can also make a new shortcode or a custom view to display the latest topics and limit the number of topics.
I then lost hours trying to get the list of popular posts to appear…Turns out that the shortcode has dodgy apostrophes. Once I edited those the shortcode worked:
Good ole’ curly quotes back at it again.
Glad you seem to have it all figured out now.
Without even trying to mess with Robins plugin.
You can just make a copy of the
content-single-view.php
file put it into a child theme, and then edit out whatever you want.https://codex.bbpress.org/themes/theme-compatibility/
You can also use CSS to hide items too. Make sure to use the
.bbp-view
class for single view pages or if you have a shortcode in a page use this type of class which would work in most themes, but you just need to find the page id,.page-id-ID_NUMBER
, replace “ID_NUMBER” with the number or page id of the page. Depending on your set up use any of these classes before any other item selector you are trying to remove.In reply to: [bbp-topic-index] – limit topics?What he was going for is technically right, he linked to the wrong one though. The RSS setting only affects how many posts in the rss feed, not in the topic/reply lists.
In reply to: BUG: when pasting #reply URL in replyTechnically it is not a bug, it is that you just do not want the feature (I am not a fan of it either).
I swear as long as you have enable embeds in the bbPress forum settings and just installed the Disable Embeds plugin, you should not see those specific WordPress post/page embeds that you explained in your earlier post or the ones that are displaying correctly in this post https://bbpress.org/forums/topic/free-wordpress-theme-that-are-bbpress-ready/#post-176073.
In reply to: BUG: when pasting #reply URL in replySo the plugin you linked to doesn’t really have anything to offer (other than stopping embeds in WP).
Did you try it? That plugin is specifically for those new WordPress post embeds.
THe setting I mentioned in the bbPress forum settings removes all embeds (youtube, flickr) including the WordPress post embeds.
You do not have to use CSS to hide the little post id number.
Did you try the disable embeds plugin? It may not do the forums specifically, just site wide.
In reply to: search function still available after searchingAlso, can you explain what you meant by “… or use a plugin like functionality. “.?
This plugin its called Functionality, its like a plugin that can hold custom php code snippets.
https://wordpress.org/plugins/functionality/
Thanks for the code. unfortunately it doesn’t work for my website
Both of the code snippets I posted should show the forum search above a single topic, single forum, and in search results. Well unless your custom theme has custom bbPress templates with all the available hooks I am using in my code removed.
can you tell me if its actually worth adding a child theme, if the parent theme is an individually created one by a web design company?
I mean you do not have to.
In reply to: Hide WordPress User Bar When Logged InI dont get this logic, despite if it is only WP logic, not bbPress one.
Maybe I missunderstool it all. New Users (Roles = Subscriber, Participant) have access to add new Posts, and attach them to taxonomies.Forum Users are forum USers, not Portal editors of Articles.
@stagger-lee you may need to track back and look at any custom code you may have and see if any is granting users specific permissions that would grant your users to be able to do this. Of course your new forum users shouldn’t be able to do this by default. Regular subscribers/participants should only be able to edit their profile usually.In reply to: Adding Views Count ColumnLook into this topic here for some help. Since you are just replacing the voices column you can do without some of the CSS and just put the views code in the voices column.
https://bbpress.org/forums/topic/create-new-column-for-topic-posts/
In reply to: List of Participants for other Participants to seeMaybe look into using BuddyPress since you came from vBull and since it has a members list in a page that you could just make private.
In reply to: How to stop Topic Revisions Log on this one topic?You can turn off the revisions in Settings > Forums.
In reply to: What does Robkk do?What kind of information are you looking for, because I don’t feel like linking to any specific sites that I have worked on.
Are you just talking about bbPress in general?
In reply to: Create new column for topic postsDid you use the CSS I gave you, it should fix it up if you use it.
Just put the custom css in a child themes style.css file or add it to a custom css plugin.
In reply to: Showing Profile InformationI couldn’t get it to see anything I put in my child theme, because it is accessed through plugins, not themes. I know I’ll have to update the file again manually as soon as I update bbPress.
You don’t need to change anything in bbPress to do this type of thing, just put any template files in a child theme or custom theme package plugin (there is no info on this but this is possible too).
https://codex.bbpress.org/themes/theme-compatibility/
Also, that plugin only allows you to add new fields, not display existing ones. Doesn’t it seem odd that you would be prompted to enter data in fields on user profile edit, but then not have any of them show on view? By default the user fields should be available to show, at least standard ones like description, website, and social media profiles.
This is the only plugin I can think of that might be easy for some users to display content. If you want contact Robin later in the support forum to see if he would add existing fields to it.
How are some people not caring about this? It just seems so fundamental to me.
There is a plan to add certain fields to the profile page in the future, mostly default existing fields for now.
In reply to: Replace WordPress Posts with Forum Topics ?You can just either stick to making a blog or forum. Unless you are trying to convert existing posts??
In reply to: search function still available after searchingUse this PHP code place it into a child theme functions.php file or use a plugin like functionality.
//display bbPress search form in search results function rk_bbp_search_form_in_search_results(){ if ( bbp_allow_search() && bbp_is_search_results() ) { ?> <div class="bbp-search-form"> <?php bbp_get_template_part( 'form', 'search' ); ?> </div> <?php } } add_action( 'bbp_template_before_search', 'rk_bbp_search_form_in_search_results' );
Also look at this guide.
In reply to: Forum IconsThats a different forum plugin, but its just an unread posts feature that added the icons. Thre is an unread posts plugin for bbPress that can do the same thing if you use a similar image.
In reply to: Styling nested repliesYou can use this class before another class in a reply to style the threads.
.bbp-threaded-replies
This class only appears if you enabled threaded replies.
In reply to: Avatar position over topic in mobile responsiveYou can disable threaded replies for now to fix the issue, there is currently an issue with some of the responsive styles and some markup that is broken somewhere while activating threaded replies.
https://bbpress.trac.wordpress.org/ticket/2757
There is also a way to keep threaded replies and just changing your layout to a more mobile first layout, but threaded replies has some other issues that users might encounter like not having pagination.