Forum Replies Created
-
In reply to: Сascading style sheets (CSS) for bbpress
you’re welcome !
In reply to: Private: appended twice to forum titleadd this plugin
https://wordpress.org/plugins/bbp-style-pack/
dashboard>plugins>add new and search for bbp-style-pack
when loaded and activated
Dashboard>settings>forum display
and select no. 4
In reply to: Anonymous Post By Deleted Userhmmm.. I can’t immediately see how that would be done.
so you have
settings>forums ‘Allow guest users without accounts to create topics and replies’ unchecked?
In reply to: Private forum index and forumsThanks for sharing !
In reply to: New Replies on topCan you put your solution on here to help others
In reply to: New Replies on toptry adding this to your functions file
add_filter('bbp_has_replies_query', 'modify_replies_query'); function modify_replies_query($bbp_r) { $bbp_r = 'ASC'; return $bbp_r; }In reply to: Broken Breadcrumbsok, just because there are the same symptoms, doesn’t mean that the solution is the same !
have you installed
In reply to: I need some tech assistance to make bbpress worksuggest you try
In reply to: bbPress.css not loading fresh installsuggest you look on/raise in
In reply to: Remove “You Must Be Logged In” AlertIn reply to: bbPress.css not loading fresh installit’s an alpha version – this is unreleased code, so you would expect stuff to be wrong/missing.
In reply to: Edit bbpress notificationyes, it is only already declared because I used the same function name.
Just combine the two and you get
//This function changes the text wherever it is quoted function change_translate_text( $translated_text ) { if ( $translated_text == '%s ago') { $translated_text = '%s'; } if ( $translated_text == 'This forum contains %1$s and %2$s, and was last updated by %3$s %4$s.' ) { $translated_text = 'This elephant contains %1$s and %2$s, and was last giraffed by %3$s %4$s.'; } if ( $translated_text == 'This forum contains %1$s, and was last updated by %2$s %3$s.' ) { $translated_text = 'This elephant contains %1$s, and was last giraffed by %2$s %3$s.'; } if ( $translated_text == 'This forum contains %1$s and %2$s.' ) { $translated_text = 'This elephant contains %1$s and %2$s.'; } if ( $translated_text == 'This forum contains %1$s.' ) { $translated_text = 'This elephant contains %1$s.'; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );In reply to: Сascading style sheets (CSS) for bbpressIn reply to: Users unable to edit forum postsGreat thanks – it should work, just I haven’t tested !
In reply to: Edit bbpress notificationit’s in
/includes/forums/template.php
lines
1987, 1995, 2007, 2017
You could probably filter it by
//This function changes the text wherever it is quoted function change_translate_text( $translated_text ) { if ( $translated_text == 'This forum contains %1$s and %2$s, and was last updated by %3$s %4$s.' ) { $translated_text = 'This elephant contains %1$s and %2$s, and was last giraffed by %3$s %4$s.'; } if ( $translated_text == 'This forum contains %1$s, and was last updated by %2$s %3$s.' ) { $translated_text = 'This elephant contains %1$s, and was last giraffed by %2$s %3$s.'; } if ( $translated_text == 'This forum contains %1$s and %2$s.' ) { $translated_text = 'This elephant contains %1$s and %2$s.'; } if ( $translated_text == 'This forum contains %1$s.' ) { $translated_text = 'This elephant contains %1$s.'; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );in your functions file
In reply to: Users unable to edit forum postsI believe the following in your functions file should work
function no_edit_lock($retval, $cur_time, $lock_time, $post_date_gmt){ return false; } add_filter( ‘bbp_past_edit_lock’, ‘no_edit_lock’, 1, 4);Please come back and tell us if it does !
In reply to: Profile Page visible to non-logged-in visitorsIt should still work.
can you tell, me what your theme is?
In reply to: Users unable to edit forum postsIn reply to: Users cannot edit profileIn reply to: BBpress and theme compatiblityIn reply to: Users cannot edit profileI presume they are logged in already?
In reply to: Forum & Thread Titles Duplicated1. Use mu plugin https://wordpress.org/plugins/bbp-style-pack/ to alter
2. This is a css issue which I am not the person to fix !In reply to: My Forum isn’t displaying correctlyNo, do you have any idea why i can’t see topics below Forum names?
What you are seeing is the list of forums, you then click a forum to see the topics for that forum.
if you want each forum to have then topics below it, then use shortcodes within a page
[bbp-single-forum id=$forum_id]
[bbp-single-forum id=$forum_id]
[bbp-single-forum id=$forum_id]see
https://codex.bbpress.org/shortcodes/
or use the shortcodes from
https://wordpress.org/plugins/bbp-style-pack/ in a page
Also i was wondering how i can order Forums by some hierarchy?
If not using the shortcodes above, then use dashboard>forums>all forums and edit a forum. On the right hand side you’ll see ‘parent’ and ‘order’ boxes that let you build a hierarchy
In reply to: Log In, Register and Lost Password buttonsGreat – glad you’re fixed !
fro anyone looking at this
https://wordpress.org/plugins/bbpress-login-register-links-on-forum-topic-pages/
In reply to: My Forum isn’t displaying correctlyHave you fixed your issue, as the site looks as I would expect it to.