Forum Replies Created
-
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 !
In reply to: Shortcode on the page phpGreat – glad you’re fixed !!
In reply to: [Help] User can be close topicsyou won’t be changing subscriber – that is a wordpress role – bbpress has it’s own roles, and probably that is participant.
I’m sure you can , but haven’t tried so don’t have code offhand.
Suggest you just create a new custom role, and then set your bbpress user to it.
In reply to: Shortcode on the page phpok, well without spending hours recreating your issue, I’d suggest you try
<?php $idbbp = get_post_meta($post->ID, 'idbbp', true); $forum_id = bbpress()->current_forum_id = $idbbp; $x='[bbp-single-forum id forum id ="'.$forum_id.'"]‘ ; echo do_shortcode( $x);
In reply to: Plugin Search Block CommentsI think you found a topic on an issue – since it didn’t fix it, suggest it is not relevant.
bbPress 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: [Help] User can be close topicssee
https://codex.bbpress.org/bbpress-user-roles-and-capabilities/
and you’ll see a capability for a user to close their own topics.
you need to either amend the participant role, or create a new role with this capability
In reply to: Plugin Search Block CommentsIf it’s just a ‘Read this before you post’, then just create the topic, and then in
dashboard>topics>all topics and edit the topic you want, then under topic attributes on the right hand side, change from open to closed.
If you make this a ‘super sticky ‘ under types in the same box, you only need create this topic once, and it will appear at the start of every forum.
In reply to: Shortcode on the page phpsorry but what is the ‘page comment form ‘, where on ‘each page’ are you putting the code, and what is ‘each page’
I am trying to hep you, but you do need to do a detailed response so that I can help.
For instance
” I go into dashboard and select forums and then edit the xx forum and change the content from … to….”
or
‘I edit the page.php file and in line xxx I add YYY’
In reply to: Questions about bbPress…Can it be installed on a club website for “members only” to view the whole bbPress section?
• Can you set up different forums to be only accessed/viewable to certain members?https://wordpress.org/plugins/bbp-private-groups/
• Can it host pictures?
Usually people use
i have created custom role’s (parent and teacher)
How have you done this – using a plugin or by coding?
set dynamic role for bbpress forum itself
In reply to: Use the WordPress avatarYou’ll need to refer this to the theme authors as it’s a paid theme, so we can’t load it and look at what it’s doing.