Forum Replies Created
-
In reply to: widget does not display topics, only general links
you should see
(bbpress) Forum serach Form
(bbpress) Forums List
(bbpress) Login Widget
(bbpress) recent replies
(bbpress) Recent topics
(bbpress) Statistics
(bbpress) topics views listdo you not see all these?
In reply to: Show topics, hide content?No, you’re right that’s as far as my plugin goes.
I don’t know of anything that would go further.
I don’t plan outside of bespoke work to add this functionality.
In reply to: "Reply" buttonIf I have understood you correctly you want to change the reply form you’ll be looking at
wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php which sets up the forum and on line 57 calls
bbp_the_content
this function is in
wp-content/plugins/bbpress\includes\common\template.php
line 1706
you’d probably want to write a filter fro that function
if you’re familiar with wordpress args parsing, bbpress does it in the same way
apply_filter (‘xx’ , ‘bbp_before_get_the_content_parse_args’)
and then write a function xx that adds you initial text to $args[‘before’] should do it
Don’t; have time to write and test it at the mo, but come back if you need further help
In reply to: Show topics, hide content?yes my plugin
https://wordpress.org/plugins/bbp-private-groups/
lets you show that forums exist, but not content
In reply to: widget does not display topics, only general linksI think you have used the ‘topic views’ widget, you need to use the ‘recent topics’ widget
In reply to: Two forum index pages?bbpress has two ways to display the forums – see
You just have a page called chat, whilst the slug is still set to forum, so the latter is what the breadcrumb shows.
so you need to do two things
1. change the slug to chat
2. get bbpress to use your template with a sidebarI was trying to fix no. 2 first
Suggest you refer the issue to you theme provider
In reply to: Customize Text or change languageso if you wanted to change ‘Create New Topic’ to ‘hello mother’ you would do
//This function changes the text wherever it is quoted function change_translate_text( $translated_text ) { if ( $translated_text == 'Create New Topic' ) { $translated_text = 'hello mother'; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );
In reply to: Two forum index pages?ok, make a copy of this file and rename it bbpress.php
put this file in the root of your theme
ie
wp-content/themes/%yourthemename%/bbpress.php
where %yourthemename% is the name of your theme!
Then amend as follows
change
// Sidebar ///////////////////////////////////////////// if ($themify->layout != “sidebar-none”): get_sidebar(); endif; ?>
to
// Sidebar ///////////////////////////////////////////// get_sidebar(); ?>
This will then force bbpress to use a forum with a sidebar
Great – and thanks for posting the solution !
In reply to: Error on Installation!talk to your host provider about increasing your memory size
In reply to: Two forum index pages?can you post your page template on here please
In reply to: error after submitAlways done this?, just started?, just installed bbpress?, have you added anything – like plugins?, changed themes?, updated plugins?, updated wordpress? what versions of bbpress & wordpress are you running, which theme?
and what is a ‘response’ – a reply to a topic?
Come back with further info, and we’ll try to help 🙂
In reply to: Topics not appearing in forumGreat, glad it worked !
In reply to: Plugin Search Block Commentsgreat – glad you’re fixed !
In reply to: Bbpress activated, but doesn't do anythingbbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
In reply to: Mix wordpress with bbPress?in a word , yes !
In reply to: Two forum index pages?this is probably a theme page issue
see
depending on your theme, you may need to do some renaming and editing of files – reda the article and then come back if you need further help
In reply to: Cannot access abc/forumsNot really sure what to recommend next, this is well out of my comfort zone.
In reply to: 404 on Edit my postFrom front end it looks like this:
That is what it should look like
can you just check if this is an issue with the replies that were imported, or just new replies created or both, and how these relate to topics that were imported?
In other words do all the following have the same issue?
topic imported, reply imported
topic imported, reply created in bbpress
bbpress topic, reply created in bbpressIn reply to: Customize Text or change languagePut the following in your functions file
//This function changes the text wherever it is quoted function change_translate_text( $translated_text ) { if ( $translated_text == 'old text' ) { $translated_text = 'new text'; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );
you can put in multiple lines eg
if ( $translated_text == 'old text1' ) { $translated_text = 'new text1'; } if ( $translated_text == 'old text2' ) { $translated_text = 'new text2'; }
In reply to: Hueman theme issuegreat – glad you’re fixed
In reply to: How do I change the permalinks?dashboard>settings>forums look for forum root slug heading and untick Prefix all forum content with the Forum Root slug
In reply to: Customize Text or change languageIn reply to: User Registration Currently Disallowedseems to be fine when I tested
great – glad you’re fixed !