Forum Replies Created
-
In reply to: Display forum as list not working
thx @robkk, that fixed it….though something still doesn’t appear right, shouldn’t the subforums be indented?
In reply to: Display forum as list not workinghello…I had this working when I 1st setup my site, I just noticed it has reverted back…
I was using the following css code in my child theme:
#bbpress-forums .bbp-forums-list li {
display: block;
}I just tried switching to the filter in functions but it’s not working either…
any idea why this would stop working? thx!
In reply to: How do I remove the yellow notices?ahh nice, I have that plugin but missed that option…I had only seen where you could rename it…this is probably a better option…thx
btw…luv your avatar…android ftw!
In reply to: How do I remove the yellow notices?I found this filter somewhere in the forums, but it still leaves the yellow box…just removes the text…
function change_translate_text( $translated_text ) { if ( $translated_text == 'Your account has the ability to post unrestricted HTML content.' ) { $translated_text = ''; } if ( $translated_text == 'Oh bother! No topics were found here!' ) { $translated_text = ''; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );
using firebug, I found the code for the yellow box, then I added this code to my CSS, but will it cause other issues?
thx
.bbp-template-notice { display: none; }
In reply to: Reply threading issue@robkk cool, I’ll do that….thx again
*edit* yes, it fixed some other issues…thx!
In reply to: Reply threading issue@robkk thx Rob! I checked my style.css in my child theme & found that code…I think I copied/pasted from somewhere…I changed it & it fixed it! thx again!!!
In reply to: Reply threading issue@robkk I had turned reply threading back on, just so the posts look normal, but I will turn it back off so you can check…thanks!
In reply to: Shorten Freshness@casiepa , that’s a nice plugin, thx!
In reply to: Remove top pagination but keep bottomyes, I realize this as I originally stated…I don’t want any pagination shown.
In reply to: Remove top pagination but keep bottomunless I’m missing something…I added the below code to my child theme style.css & now pagination top & bottom is gone…
.bbp-pagination-count {
display: none;
}In reply to: Remove top pagination but keep bottomcan someone pls post the code to achieve this using a filter in child theme functions.php
or maybe a style edit?
*EDIT* disregard…I used this to remove both
.bbp-pagination-count {
display: none;
}In reply to: Set default topic title to max 70 instead of 80thx Rob, that worked! I understand what u did, but I guess I was confused by Jareds post that stated there was already a filter in options.php for this.
In reply to: Set default topic title to max 70 instead of 80sorry to bump such a old topic, but can someone show the specifc code to add to child theme functions.php? still learning here…
I tried adding this to functions, but produced an error…
function bbp_title_max_length( $default = 90 ) { echo bbp_get_title_max_length( $default ); } /** * Return the maximum length of a title * * @since bbPress (r3246) * @param $default bool Optional. Default value 90 * @uses get_option() To get the maximum title length * @return int Is anonymous posting allowed? */ function bbp_get_title_max_length( $default = 90 ) { return (int) apply_filters( 'bbp_get_title_max_length', (int) get_option( '_bbp_title_max_length', $default ) ); }
thx!