Skip to content

Commit ede4fb0

Browse files
Plugin updated to version 4.45
1 parent 7747ae0 commit ede4fb0

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

header-and-footer-scripts-inserter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
66
* Author: Space X-Chimp
77
* Author URI: https://www.spacexchimp.com
8-
* Version: 4.44
8+
* Version: 4.45
99
* License: GPL3
1010
* Text Domain: header-and-footer-scripts-inserter
1111
* Domain Path: /languages/

inc/php/core.php

+3-8
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function spacexchimp_p006_settings_link( $links ) {
3838
// Declare variables
3939
$url_upgrade = "https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html";
4040
$text_upgrade = __( 'Upgrade to PRO', $plugin['text'] );
41-
$link_upgrade = '<a href="' . $url_upgrade . '" target="_blank"><b style="color:red;">' . $text_upgrade . '</b></a>';
41+
$link_upgrade = '<a href="' . $url_upgrade . '" target="_blank"><b style="color:#0f9f44;">' . $text_upgrade . '</b></a>';
4242

4343
array_unshift( $links, $link_upgrade );
4444

@@ -59,15 +59,10 @@ function spacexchimp_p006_plugin_row_meta( $links, $file ) {
5959
// Declare variables
6060
$url_donate = "https://www.spacexchimp.com/donate.html";
6161
$text_donate = __( 'Donate', $plugin['text'] );
62-
$link_donate = '<a href="' . $url_donate . '" target="_blank"><span class="dashicons dashicons-heart"></span> ' . $text_donate . '</a>';
63-
64-
$url_upgrade = "https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html";
65-
$text_upgrade = __( 'Upgrade to PRO', $plugin['text'] );
66-
$link_upgrade = '<a href="' . $url_upgrade . '" target="_blank"><span class="dashicons dashicons-star-filled"></span> ' . $text_upgrade . '</a>';
62+
$link_donate = '<a href="' . $url_donate . '" target="_blank"><span class="dashicons dashicons-heart" style="color:pink;"></span> ' . $text_donate . '</a>';
6763

6864
$new_links = array(
69-
'donate' => $link_donate,
70-
'upgrage' => $link_upgrade
65+
'donate' => $link_donate
7166
);
7267

7368
$links = array_merge( $links, $new_links );

readme.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Donate link: https://www.spacexchimp.com/donate.html
55
Requires at least: 4.9
66
Tested up to: 5.5
77
Requires PHP: 5.6
8-
Stable tag: 4.44
8+
Stable tag: 4.45
99
License: GPL3
1010
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1111

@@ -224,6 +224,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
224224

225225
== Changelog ==
226226

227+
= 4.45 - Aug 10, 2020 =
228+
* Maintenance: Ensure compatibility with upcoming WordPress 5.5.
229+
* Enhancement: Remove the second ask for an upgrade on the "Plugins" page and change the color of some links to the right emotional colors. (Thanks to Abdulla Hussain)
230+
227231
= 4.44 - Mar 20, 2020 =
228232
* Maintenance: Ensure compatibility with upcoming WordPress 5.4.
229233
* Maintenance: Minimum WordPress version requirement is set to 4.9. Support for WordPress 4.8 and below has been discontinued.

0 commit comments

Comments
 (0)