Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
e4cca76db7 | |||
86f491b9d8 | |||
c903f2dc79 | |||
003892375c | |||
450b846d41 | |||
84f344a99b | |||
19366269e3 | |||
2ad5446bdf | |||
1113893dc1 |
@ -2,6 +2,15 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [2.0.0] - 2024-05-17
|
||||||
|
### Added
|
||||||
|
- Note clarifying that the plugin has no settings page
|
||||||
|
- Clarification that functionality is limited to the admin plugins page only
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Major version release for WordPress.org submission
|
||||||
|
- Finalized all assets and documentation for public release
|
||||||
|
|
||||||
## [1.6.28] - 2024-05-17
|
## [1.6.28] - 2024-05-17
|
||||||
### Changed
|
### Changed
|
||||||
- Consolidated asset documentation into a single comprehensive guide
|
- Consolidated asset documentation into a single comprehensive guide
|
||||||
|
12
README.md
12
README.md
@ -15,6 +15,8 @@ Have you ever deleted a plugin directly from the server or database and then bee
|
|||||||
|
|
||||||
This small utility plugin adds missing plugins to your WordPress plugins list and provides a "Remove Notice" link, allowing you to safely clean up invalid plugin entries with one click.
|
This small utility plugin adds missing plugins to your WordPress plugins list and provides a "Remove Notice" link, allowing you to safely clean up invalid plugin entries with one click.
|
||||||
|
|
||||||
|
**Note:** This plugin doesn't have a settings page. Its functionality is limited to running on the WordPress admin plugins page only.
|
||||||
|
|
||||||
### Key Features
|
### Key Features
|
||||||
|
|
||||||
* Adds missing plugins directly to your plugins list
|
* Adds missing plugins directly to your plugins list
|
||||||
@ -116,9 +118,7 @@ Manually editing the WordPress database is risky and requires technical knowledg
|
|||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
1. Error message with explanation notification
|
1. Plugin in action - showing error message, explanation notification, and "Remove Notice" link
|
||||||
2. Missing plugin shown in the plugins list with "Remove Notice" link
|
|
||||||
3. Auto-scroll feature that highlights the missing plugin
|
|
||||||
|
|
||||||
## Developers
|
## Developers
|
||||||
|
|
||||||
@ -160,6 +160,12 @@ The plugin works by:
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 2.0.0
|
||||||
|
* Major version release for WordPress.org submission
|
||||||
|
* Added note clarifying that the plugin has no settings page
|
||||||
|
* Clarified that functionality is limited to the admin plugins page only
|
||||||
|
* Finalized all assets and documentation for public release
|
||||||
|
|
||||||
### 1.6.28
|
### 1.6.28
|
||||||
* Consolidated asset documentation into a single comprehensive guide
|
* Consolidated asset documentation into a single comprehensive guide
|
||||||
* Clarified that `-rtl` suffix is for Right-to-Left languages, not dark mode
|
* Clarified that `-rtl` suffix is for Right-to-Left languages, not dark mode
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Plugin Name: Fix 'Plugin file does not exist.' Notices
|
* Plugin Name: Fix 'Plugin file does not exist.' Notices
|
||||||
* Plugin URI: https://wordpress.org/plugins/fix-plugin-does-not-exist-notices/
|
* Plugin URI: https://wordpress.org/plugins/fix-plugin-does-not-exist-notices/
|
||||||
* Description: Adds missing plugins to the plugins list with a "Remove Reference" link so you can permanently clean up invalid plugin entries and remove error notices.
|
* Description: Adds missing plugins to the plugins list with a "Remove Reference" link so you can permanently clean up invalid plugin entries and remove error notices.
|
||||||
* Version: 1.6.28
|
* Version: 2.0.0
|
||||||
* Author: Marcus Quinn & WP ALLSTARS
|
* Author: Marcus Quinn & WP ALLSTARS
|
||||||
* Author URI: https://www.wpallstars.com
|
* Author URI: https://www.wpallstars.com
|
||||||
* License: GPL-2.0+
|
* License: GPL-2.0+
|
||||||
@ -48,7 +48,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Define plugin constants
|
// Define plugin constants
|
||||||
define( 'FPDEN_VERSION', '1.6.28' );
|
define( 'FPDEN_VERSION', '2.0.0' );
|
||||||
define( 'FPDEN_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
define( 'FPDEN_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
||||||
define( 'FPDEN_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
define( 'FPDEN_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
||||||
define( 'FPDEN_PLUGIN_FILE', __FILE__ );
|
define( 'FPDEN_PLUGIN_FILE', __FILE__ );
|
||||||
|
@ -9,6 +9,8 @@
|
|||||||
|
|
||||||
namespace WPALLSTARS\FixPluginDoesNotExistNotices;
|
namespace WPALLSTARS\FixPluginDoesNotExistNotices;
|
||||||
|
|
||||||
|
use function add_filter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Updater
|
* Class Updater
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# This file is distributed under the GPL-2.0+.
|
# This file is distributed under the GPL-2.0+.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Fix 'Plugin file does not exist.' Notices 1.6.28\n"
|
"Project-Id-Version: Fix 'Plugin file does not exist.' Notices 2.0.0\n"
|
||||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fix-plugin-does-not-exist-notices\n"
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fix-plugin-does-not-exist-notices\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
13
readme.txt
13
readme.txt
@ -5,7 +5,7 @@ Tags: plugins, missing plugins, cleanup, error fix, admin tools, plugin file doe
|
|||||||
Requires at least: 5.0
|
Requires at least: 5.0
|
||||||
Tested up to: 6.4
|
Tested up to: 6.4
|
||||||
Requires PHP: 7.0
|
Requires PHP: 7.0
|
||||||
Stable tag: 1.6.28
|
Stable tag: 2.0.0
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||||
|
|
||||||
@ -19,6 +19,8 @@ Have you ever deleted a plugin directly from the server or database and then bee
|
|||||||
|
|
||||||
This small utility plugin adds missing plugins to your WordPress plugins list and provides a "Remove Notice" link, allowing you to safely clean up invalid plugin entries with one click.
|
This small utility plugin adds missing plugins to your WordPress plugins list and provides a "Remove Notice" link, allowing you to safely clean up invalid plugin entries with one click.
|
||||||
|
|
||||||
|
**Note:** This plugin doesn't have a settings page. Its functionality is limited to running on the WordPress admin plugins page only.
|
||||||
|
|
||||||
= Key Features =
|
= Key Features =
|
||||||
|
|
||||||
* Adds missing plugins directly to your plugins list
|
* Adds missing plugins directly to your plugins list
|
||||||
@ -109,6 +111,12 @@ Manually editing the WordPress database is risky and requires technical knowledg
|
|||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
|
= 2.0.0 =
|
||||||
|
* Major version release for WordPress.org submission
|
||||||
|
* Added note clarifying that the plugin has no settings page
|
||||||
|
* Clarified that functionality is limited to the admin plugins page only
|
||||||
|
* Finalized all assets and documentation for public release
|
||||||
|
|
||||||
= 1.6.28 =
|
= 1.6.28 =
|
||||||
* Consolidated asset documentation into a single comprehensive guide
|
* Consolidated asset documentation into a single comprehensive guide
|
||||||
* Clarified that `-rtl` suffix is for Right-to-Left languages, not dark mode
|
* Clarified that `-rtl` suffix is for Right-to-Left languages, not dark mode
|
||||||
@ -364,6 +372,9 @@ Manually editing the WordPress database is risky and requires technical knowledg
|
|||||||
|
|
||||||
== Upgrade Notice ==
|
== Upgrade Notice ==
|
||||||
|
|
||||||
|
= 2.0.0 =
|
||||||
|
Major version release for WordPress.org submission with improved documentation and clarification about plugin functionality.
|
||||||
|
|
||||||
= 1.6.28 =
|
= 1.6.28 =
|
||||||
Improved asset documentation and clarified that `-rtl` suffix is for Right-to-Left languages, not dark mode.
|
Improved asset documentation and clarified that `-rtl` suffix is for Right-to-Left languages, not dark mode.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user