Version Description
Download this release
Release Info
Developer | dipakcg |
Plugin | WP Performance Score Booster |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7 to 1.7.1
- admin-page.php +9 -20
- assets/css/style.css +0 -13
- assets/css/style.min.css +1 -1
- readme.txt +4 -1
- wp-performance-score-booster.php +2 -2
admin-page.php
CHANGED
@@ -140,31 +140,20 @@ function wppsb_admin_options() {
|
|
140 |
<hr />
|
141 |
<div class="wppsb_rss-widget">
|
142 |
<?php
|
143 |
-
|
144 |
-
'url' => 'https://dipakgajjar.com/category/news/feed/?refresh='.rand(10,100).'', // feed URL
|
145 |
-
'title' => 'News & Updates from Dipak C. Gajjar',
|
146 |
-
'items' => 3, // nubmer of posts to display
|
147 |
-
'show_summary' => 1,
|
148 |
-
'show_author' => 0,
|
149 |
-
'show_date' => 0
|
150 |
-
)); */
|
151 |
-
/* Load the news content from Dropbox url */
|
152 |
$news_content = wp_remote_fopen("https://cdn.rawgit.com/dipakcg/wp-performance-score-booster/master/news-and-updates.html");
|
153 |
echo $news_content;
|
154 |
?>
|
155 |
</div> </td>
|
156 |
<!-- Referrals -->
|
157 |
-
<td width="1%">   </td>
|
158 |
<td width="51%" valign="top">
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
<a href="http://www.siteground.com" target="_blank" onClick="this.href='https://www.siteground.com/wordpress-hosting.htm?afbannercode=783dd6fb6802e26ada6cf20768622fda'" ><img src="https://ua.siteground.com/img/banners/general/best-pack/250x250.gif" alt="WordPress Hosting" width="250" height="250" border="0"></a>
|
166 |
-
</div>
|
167 |
-
<?php echo '</td> </tr> </table>'; ?>
|
168 |
<?php
|
169 |
}
|
170 |
|
@@ -174,4 +163,4 @@ function wppsb_add_admin_menu() {
|
|
174 |
// add_menu_page( __('WP Performance Score Booster Settings', 'wp-performance-score-booster'), __('WP Performance Score Booster', 'wp-performance-score-booster'), 'manage_options', 'wp-performance-score-booster', 'wppsb_admin_options', plugins_url('assets/images/wppsb-icon-24x24.png', __FILE__) );
|
175 |
add_options_page( __('WP Performance Score Booster Settings', 'wp-performance-score-booster'), __('WP Performance Score Booster', 'wp-performance-score-booster'), 'manage_options', 'wp-performance-score-booster', 'wppsb_admin_options' );
|
176 |
}
|
177 |
-
?>
|
140 |
<hr />
|
141 |
<div class="wppsb_rss-widget">
|
142 |
<?php
|
143 |
+
/* Load the news content from Github url */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
$news_content = wp_remote_fopen("https://cdn.rawgit.com/dipakcg/wp-performance-score-booster/master/news-and-updates.html");
|
145 |
echo $news_content;
|
146 |
?>
|
147 |
</div> </td>
|
148 |
<!-- Referrals -->
|
149 |
+
<td width="1%"> </td>
|
150 |
<td width="51%" valign="top">
|
151 |
+
<?php
|
152 |
+
/* Load the referrals content from Github url */
|
153 |
+
$referrals_content = wp_remote_fopen("https://cdn.rawgit.com/dipakcg/wp-performance-score-booster/master/referrals.html");
|
154 |
+
echo $referrals_content;
|
155 |
+
?>
|
156 |
+
</td> </tr> </table>
|
|
|
|
|
|
|
157 |
<?php
|
158 |
}
|
159 |
|
163 |
// add_menu_page( __('WP Performance Score Booster Settings', 'wp-performance-score-booster'), __('WP Performance Score Booster', 'wp-performance-score-booster'), 'manage_options', 'wp-performance-score-booster', 'wppsb_admin_options', plugins_url('assets/images/wppsb-icon-24x24.png', __FILE__) );
|
164 |
add_options_page( __('WP Performance Score Booster Settings', 'wp-performance-score-booster'), __('WP Performance Score Booster', 'wp-performance-score-booster'), 'manage_options', 'wp-performance-score-booster', 'wppsb_admin_options' );
|
165 |
}
|
166 |
+
?>
|
assets/css/style.css
CHANGED
@@ -90,16 +90,3 @@ td.wppsb_onoff {
|
|
90 |
.wppsb_onoffswitch-checkbox:checked + .wppsb_onoffswitch-label .wppsb_onoffswitch-switch {
|
91 |
right: 0px;
|
92 |
}
|
93 |
-
.wppsb_referrals {
|
94 |
-
background: #FFF;
|
95 |
-
width: 250px;
|
96 |
-
min-height: 270px;
|
97 |
-
border: 1px solid #CCC;
|
98 |
-
float: left;
|
99 |
-
padding: 15px;
|
100 |
-
position: relative;
|
101 |
-
margin: 32px 10px 10px 0;
|
102 |
-
color: #0073AA;
|
103 |
-
font-size: 14px;
|
104 |
-
line-height: 1.5;
|
105 |
-
}
|
90 |
.wppsb_onoffswitch-checkbox:checked + .wppsb_onoffswitch-label .wppsb_onoffswitch-switch {
|
91 |
right: 0px;
|
92 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/style.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wppsb_settings{font-size:16px !important;}.wppsb_admin_dev_sidebar_div{width:300px;height:255px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:20px 20px 20px 0;border:1px solid #FF9900;background-color:#FFFFFF;padding:10px 10px 0 30px}.wppsb_admin_dev_sidebar{font-size:14px;margin:0 20px 10px 0;display:block}.wppsb_admin_dev_sidebar a{text-decoration:none}.wppsb_admin_dev_sidebar img{padding:0 5px 0 0;vertical-align:middle}.wppsb_news_section{border-radius:20px 20px 20px 0;border:1px solid #FF9900;background-color:#FFFFFF;padding:20px 20px 20px 20px;width:98%}a.wppsb_rsswidget{font-size:16px !important;text-decoration:none !important}.wppsb_rss-widget ul li{margin-bottom:25px !important}td.wppsb_onoff{width:75px;height:40px}.wppsb_onoffswitch{position:relative;width:70px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.wppsb_onoffswitch-checkbox{display:none !important}.wppsb_onoffswitch-label{display:block;overflow:hidden;cursor:pointer;border:2px solid #999999;border-radius:20px}.wppsb_onoffswitch-inner{display:block;width:200%;margin-left:-100%;transition:margin 0.3s ease-in 0s}.wppsb_onoffswitch-inner:before,.wppsb_onoffswitch-inner:after{display:block;float:left;width:50%;padding:0;height:22px;line-height:22px;font-size:15px;color:white;font-family:Trebuchet, Arial, sans-serif;font-weight:bold;box-sizing:border-box}.wppsb_onoffswitch-inner:before{content:"ON";padding-left:10px;background-color:#5CA21E;color:#FFFFFF}.wppsb_onoffswitch-inner:after{content:"OFF";padding-right:10px;background-color:#EEEEEE;color:#999999;text-align:right}.wppsb_onoffswitch-switch{display:block;width:11px;margin:6px;background:#FFFFFF;position:absolute;top:0;bottom:0;right:43px;border:2px solid #999999;border-radius:20px;transition:all 0.3s ease-in 0s}.wppsb_onoffswitch-checkbox:checked + .wppsb_onoffswitch-label .wppsb_onoffswitch-inner{margin-left:0}.wppsb_onoffswitch-checkbox:checked + .wppsb_onoffswitch-label .wppsb_onoffswitch-switch{right:0px}
|
1 |
+
.wppsb_settings{font-size:16px !important;}.wppsb_admin_dev_sidebar_div{width:300px;height:255px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:20px 20px 20px 0;border:1px solid #FF9900;background-color:#FFFFFF;padding:10px 10px 0 30px}.wppsb_admin_dev_sidebar{font-size:14px;margin:0 20px 10px 0;display:block}.wppsb_admin_dev_sidebar a{text-decoration:none}.wppsb_admin_dev_sidebar img{padding:0 5px 0 0;vertical-align:middle}.wppsb_news_section{border-radius:20px 20px 20px 0;border:1px solid #FF9900;background-color:#FFFFFF;padding:20px 20px 20px 20px;width:98%}a.wppsb_rsswidget{font-size:16px !important;text-decoration:none !important}.wppsb_rss-widget ul li{margin-bottom:25px !important}td.wppsb_onoff{width:75px;height:40px}.wppsb_onoffswitch{position:relative;width:70px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.wppsb_onoffswitch-checkbox{display:none !important}.wppsb_onoffswitch-label{display:block;overflow:hidden;cursor:pointer;border:2px solid #999999;border-radius:20px}.wppsb_onoffswitch-inner{display:block;width:200%;margin-left:-100%;transition:margin 0.3s ease-in 0s}.wppsb_onoffswitch-inner:before,.wppsb_onoffswitch-inner:after{display:block;float:left;width:50%;padding:0;height:22px;line-height:22px;font-size:15px;color:white;font-family:Trebuchet, Arial, sans-serif;font-weight:bold;box-sizing:border-box}.wppsb_onoffswitch-inner:before{content:"ON";padding-left:10px;background-color:#5CA21E;color:#FFFFFF}.wppsb_onoffswitch-inner:after{content:"OFF";padding-right:10px;background-color:#EEEEEE;color:#999999;text-align:right}.wppsb_onoffswitch-switch{display:block;width:11px;margin:6px;background:#FFFFFF;position:absolute;top:0;bottom:0;right:43px;border:2px solid #999999;border-radius:20px;transition:all 0.3s ease-in 0s}.wppsb_onoffswitch-checkbox:checked + .wppsb_onoffswitch-label .wppsb_onoffswitch-inner{margin-left:0}.wppsb_onoffswitch-checkbox:checked + .wppsb_onoffswitch-label .wppsb_onoffswitch-switch{right:0px}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: performance, speed, time, query, strings, gzip, compression, caching, boos
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3S8BRPLWLNQ38
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 1.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -46,6 +46,9 @@ Pretty much, yeah.
|
|
46 |
1. Admin Settings
|
47 |
|
48 |
== Changelog ==
|
|
|
|
|
|
|
49 |
= 1.7, September 15, 2016 =
|
50 |
* Fixed css conflict with WP Super Minify.
|
51 |
* Improved deactivation and uninstallation hooks.
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3S8BRPLWLNQ38
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 1.7.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
46 |
1. Admin Settings
|
47 |
|
48 |
== Changelog ==
|
49 |
+
= 1.7.1, February 10, 2017 =
|
50 |
+
* Improved recommendations area.
|
51 |
+
|
52 |
= 1.7, September 15, 2016 =
|
53 |
* Fixed css conflict with WP Super Minify.
|
54 |
* Improved deactivation and uninstallation hooks.
|
wp-performance-score-booster.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Performance Score Booster
|
4 |
Plugin URI: https://github.com/dipakcg/wp-performance-score-booster
|
5 |
Description: Speed-up page load times and improve website scores in services like PageSpeed, YSlow, Pingdom and GTmetrix.
|
6 |
-
Version: 1.7
|
7 |
Author: Dipak C. Gajjar
|
8 |
Author URI: https://dipakgajjar.com
|
9 |
Text Domain: wp-performance-score-booster
|
@@ -16,7 +16,7 @@ if (!defined('WPPSB_PLUGIN_VERSION')) {
|
|
16 |
define('WPPSB_PLUGIN_VERSION', 'wppsb_plugin_version');
|
17 |
}
|
18 |
if (!defined('WPPSB_PLUGIN_VERSION_NUM')) {
|
19 |
-
define('WPPSB_PLUGIN_VERSION_NUM', '1.7');
|
20 |
}
|
21 |
update_option(WPPSB_PLUGIN_VERSION, WPPSB_PLUGIN_VERSION_NUM);
|
22 |
|
3 |
Plugin Name: WP Performance Score Booster
|
4 |
Plugin URI: https://github.com/dipakcg/wp-performance-score-booster
|
5 |
Description: Speed-up page load times and improve website scores in services like PageSpeed, YSlow, Pingdom and GTmetrix.
|
6 |
+
Version: 1.7.1
|
7 |
Author: Dipak C. Gajjar
|
8 |
Author URI: https://dipakgajjar.com
|
9 |
Text Domain: wp-performance-score-booster
|
16 |
define('WPPSB_PLUGIN_VERSION', 'wppsb_plugin_version');
|
17 |
}
|
18 |
if (!defined('WPPSB_PLUGIN_VERSION_NUM')) {
|
19 |
+
define('WPPSB_PLUGIN_VERSION_NUM', '1.7.1');
|
20 |
}
|
21 |
update_option(WPPSB_PLUGIN_VERSION, WPPSB_PLUGIN_VERSION_NUM);
|
22 |
|