This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Add this code on plugin's main file. This will hide current plugin's deactivation option | |
| add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), 'disable_plugin_deactivation' ); | |
| function disable_plugin_deactivation ($actions) { | |
| unset( $actions['deactivate'] ); | |
| return $actions; | |
| } |