Skip to:
Content
Pages
Categories
Search
Top
Bottom

How do I remove the yellow notices?


  • Nekurahn
    Participant

    @nekurahn

    These are two notices I get when I’m logged in and about to post on the forums.

    Is there any way to remove them?

    “You can use BBCodes to format your content.”

    “Your account has the ability to post unrestricted HTML content.”

    Thank you for your time!

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

  • Robkk
    Moderator

    @robkk

    the bbcodes one i think you can deactivate the message in gd bbpress tools settings.

    go to the bbcodes section find BBCodes New Topic/Reply Notice and deactivate that.

    the unrestricted HTML content message shows up for only keymasters so its not really worth messing with since you are the only one seeing it.


    Nekurahn
    Participant

    @nekurahn

    Thanks so much! IT worked perfectly!

    Also, I found the solution for the html message.

    I went into the role editor and unchecked unfiltered_html from the rights of the Administrator role.

    Hope this helps someone out there. 🙂


    Robkk
    Moderator

    @robkk

    your welcome !!


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

    Just for people arriving at this thread, you could also use the plugin ‘bbP Toolkit’ to remove the text and the box all together.

    Pascal.


    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!

Viewing 6 replies - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.
Skip to toolbar