Skip to content

Removing survey notice

Shea Bunge edited this page Sep 28, 2013 · 1 revision

In Code Snippets 1.9 there is a small message at the bottom of the page advertising the Code Snippets Survey. If you'd like to remove this message, you can add this code as a snippet:

function remove_code_snippets_survey_message() {
	global $code_snippets;
	remove_action( 'code_snippets/admin/manage', array( $code_snippets->admin, 'survey_message' ) );
}

add_action( 'init', 'remove_code_snippets_survey_message' );
Clone this wiki locally