Admin settings link overwritting all other plugins
-
Fix it in autocompleter.php update the function with the following:
function autocompleter_settings_link( $links, $file ) { if ( $file == plugin_basename( dirname(__FILE__).'/autocompleter.php' ) ) { $links[] = '<a href="' . admin_url( 'options-general.php?page=autocompleter/autocompleter.php' ) . '">'.__( 'Settings' ).'</a>'; } return $links; }
The topic ‘Admin settings link overwritting all other plugins’ is closed to new replies.