Forum Replies Created
-
In reply to: Pending
what other ‘bbpress’ plugins are you running?
In reply to: Spam Forum TopicsI can’t see any obvious issues.
In reply to: BBpress like/reply notificationthere is a hook in the new reply handler you can link to
do_action( ‘bbp_new_reply’, $reply_id, $topic_id, $forum_id, $anonymous_data, $reply_author, false, $reply_to );
you could just create your own table and post the data there.
In reply to: can you help meCan’t do a treeview (whatever you mean by that), but my plugin
has an unread posts tab
In reply to: No Reply Button on Forumbbpress doesn’t have a reply tab, it just puts a new reply form at the bottom
probably easier to just add the plugin ‘code snippets’ into your site and put the code there.
That way you will not risk breaking your site
In reply to: Create private topics between users and adminmy private groups plugin will let you do that using topics permissions
create a group, allocate a forum to it, activate topic permissions, set topic permissions to only allow users to create a topic and see replies to that topic. Set users you want to that group.
In reply to: Admin menus disappearedIt 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 twentyfifteen, and see if this fixes.
Then come back
@studentfilmmakers As a start try using this plugin to style your bbpress.
then come back with any further queries
In reply to: editing post templatethese are the files you are after
bbpress/templates/default/bbpress/form-topic.php and
bbpress/templates/default/bbpress/form-reply.phpIn reply to: Renaming table label in Topic ListLink please to an example and specifically what needs changing
In reply to: customize forumIn reply to: oversized emojis in repliessorry giving up – I get This is a private group and you must request group membership in order to join.
Sorry I have only so long to help people
In reply to: oversized emojis in repliessite still requires login
In reply to: installing bbpress wipes my admin roleyou can never guarantee that every plugin will work with every other plugin or combination of plugins and settings.
suggest you :
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 twentyfifteen, and see if this fixes.
Then come back
In reply to: Error in forum previewwhat do you mean by ‘forum preview from wp’ ?
In reply to: How to display all submitted topics on page?ok, that would require some custom programming to create
In reply to: new topic issuesusers can create new topics in individual forums, but not in the forum index
In reply to: String Translation IssueThe message in the .po is
‘This user…’
but in your example it is
‘you are…’
The code should be translated
but you can just put this in your functions file
//This function changes the text wherever it is quoted function change_translate_text( $translated_text ) { if ( $translated_text == 'You are not currently subscribed to any forums' ) { $translated_text = 'new text'; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );and change ‘new text’ to whatever it should say
In reply to: How I can remove the written “Forum bbPress”sorry I don’t have time to install your theme to my test site.
In reply to: how to make the bbpress page as homepagejust put
[bbp-forum-index]
In reply to: Users importNot sure you can, and since users are allocated wordpress ID’s during import, which then link to the topics and replies, then a 2 stage import would not know which author to apply to which topic.
In reply to: List parent forum in Recent Topics widget?great – glad you’re fixed
This code will limit the topic title to 80 or whatever number you set $length to
Put it in your child theme functions.php file
add_filter ('bbp_new_topic_pre_title' , 'rew_limit_topic_length' ) ; add_filter ('bbp_edit_topic_pre_title' , 'rew_limit_topic_length' ) ; function rew_limit_topic_length ($topic_title) { $length = 80 ; if (strlen($topic_title) > $length) { $topic_title = substr($topic_title, 0, $length); } return $topic_title ; }In reply to: The Participant role is not editableso they seem to be saying that their plugin won’t let you change it.
not sure I can help further without access, and that’s beyond free help