Skip to content

Commit

Permalink
Make sure the rest of the update nags are hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Apr 22, 2024
1 parent 9bf7195 commit 4e7d029
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.0.3: 2024-04-22

* Make sure the rest of the update nags are hidden with !important rule and not partly hidden with overriding styles

### 3.0.2: 2024-04-22

* Fix mistake in nag class
Expand Down
6 changes: 3 additions & 3 deletions air-helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Air helper
* Plugin URI: https://github.com/digitoimistodude/air-helper
* Description: Plugin provides helpful functions and modifications for WordPress projects.
* Version: 3.0.2
* Version: 3.0.3
* Author: Digitoimisto Dude Oy
* Author URI: https://www.dude.fi
* Requires at least: 5.5
Expand All @@ -28,9 +28,9 @@
* @return integer current version of plugin
*/
function air_helper_version() {
// Version: 3.0.2
// Version: 3.0.3
// 5 integers
return 30020;
return 30030;
} // end air_helper_version

/**
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"plugin"
],
"license": "GPL-3.0+",
"version": "3.0.2",
"version": "3.0.3",
"authors": [
{
"name": "Timi Wahalahti",
Expand Down
4 changes: 2 additions & 2 deletions inc/admin/updates.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ function air_helper_hide_nag_styles() { ?>
table.plugins .update-message,
.theme-browser .update-message,
body.plugins-php ul.subsubsub li.upgrade {
display: none;
visibility: hidden;
display: none !important;
visibility: hidden !important;
}

.plugin-update-tr {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "air-helper",
"version": "3.0.2",
"version": "3.0.3",
"description": "Plugin provides helpful functions and modifications for WordPress projects.",
"main": "air-helper.php",
"dependencies": {},
Expand Down

0 comments on commit 4e7d029

Please sign in to comment.