Skip to content

Instantly share code, notes, and snippets.

@michael-cannon
Created September 10, 2013 02:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michael-cannon/6504163 to your computer and use it in GitHub Desktop.
Save michael-cannon/6504163 to your computer and use it in GitHub Desktop.
How do you remove the donate button from Testimonials Widget Premium?
<?php
add_action( 'plugins_loaded', 'twp_remove_donate', 25 );
function twp_remove_donate() {
global $TW_Premium;
remove_filter( 'plugin_row_meta', array( $TW_Premium, 'plugin_row_meta' ), 10, 2 );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment