o.m.j (@omj-1)

Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)

  • o.m.j
    Participant

    @omj-1

    thx @robkk, that fixed it….though something still doesn’t appear right, shouldn’t the subforums be indented?


    o.m.j
    Participant

    @omj-1

    hello…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!

    http://www.badboyzromz.com/forums/


    o.m.j
    Participant

    @omj-1

    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!


    o.m.j
    Participant

    @omj-1

    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

    o.m.j
    Participant

    @omj-1

    @robkk cool, I’ll do that….thx again

    *edit* yes, it fixed some other issues…thx!

    In reply to: Reply threading issue

    o.m.j
    Participant

    @omj-1

    @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

    o.m.j
    Participant

    @omj-1

    @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!

    http://www.badboyzromz.com/topic/introduce-yourself/

    In reply to: Shorten Freshness

    o.m.j
    Participant

    @omj-1

    @casiepa , that’s a nice plugin, thx!


    o.m.j
    Participant

    @omj-1

    yes, I realize this as I originally stated…I don’t want any pagination shown.


    o.m.j
    Participant

    @omj-1

    unless 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;
    }


    o.m.j
    Participant

    @omj-1

    can 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;
    }


    o.m.j
    Participant

    @omj-1

    thx 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.


    o.m.j
    Participant

    @omj-1

    sorry 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!

Viewing 13 replies - 1 through 13 (of 13 total)