My custom made plugin has “a new version available” which links to unrelated plugin

My custom made plugin has “a new version available”, also the “view details” link links to a completely unrelated plugin.

The plugin files begins with:

<?php
/*
Plugin Name: Simple Contact Form 
Plugin URI: http://www.wilcoverhoeven.com
Description: Simple contact form
Version: 1
Author: Wilco Verhoeven
Author URI: http://www.wilcoverhoeven.com
*/

How can I prevent this?

2 s
2

I think you’ve got a naming conflict there — assuming that your plugin is linking to this Simple Contact Form — try changing the name to something like “Wilco’s Simple Contact Form”.

You’ll need to update the plugin folder name and the main plugin file name as well.

Update

As Aniket points out, you might need to force an update check on your site to get rid of the notice. You can do this by going to http://yourwebsite.com/wp-admin/update-core.php?force-c‌​heck=1

Leave a Comment