WPFront Scroll Top - Version 2.0.4

Version Description

  • WP compatibility fix.
Download this release

Release Info

Developer syammohanm
Plugin Icon 128x128 WPFront Scroll Top
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

classes/class-wpfront-scroll-top.php CHANGED
@@ -37,7 +37,7 @@ require_once(dirname(__DIR__) . '/templates/options-template.php');
37
  class WPFront_Scroll_Top {
38
 
39
  //Constants
40
- const VERSION = '2.0.3.03232';
41
  const OPTIONS_GROUP_NAME = 'wpfront-scroll-top-options-group';
42
  const OPTION_NAME = 'wpfront-scroll-top-options';
43
  const PLUGIN_SLUG = 'wpfront-scroll-top';
@@ -304,19 +304,19 @@ class WPFront_Scroll_Top {
304
  return TRUE;
305
  }
306
 
307
- if (wp_doing_ajax()) {
308
  return TRUE;
309
  }
310
 
311
- if (wp_is_json_request()) {
312
  return TRUE;
313
  }
314
 
315
- if (wp_is_jsonp_request()) {
316
  return TRUE;
317
  }
318
 
319
- if (wp_is_xml_request()) {
320
  return TRUE;
321
  }
322
 
37
  class WPFront_Scroll_Top {
38
 
39
  //Constants
40
+ const VERSION = '2.0.4.04013';
41
  const OPTIONS_GROUP_NAME = 'wpfront-scroll-top-options-group';
42
  const OPTION_NAME = 'wpfront-scroll-top-options';
43
  const PLUGIN_SLUG = 'wpfront-scroll-top';
304
  return TRUE;
305
  }
306
 
307
+ if (function_exists('wp_doing_ajax') && wp_doing_ajax()) {
308
  return TRUE;
309
  }
310
 
311
+ if (function_exists('wp_is_json_request') && wp_is_json_request()) {
312
  return TRUE;
313
  }
314
 
315
+ if (function_exists('wp_is_jsonp_request') && wp_is_jsonp_request()) {
316
  return TRUE;
317
  }
318
 
319
+ if (function_exists('wp_is_xml_request') && wp_is_xml_request()) {
320
  return TRUE;
321
  }
322
 
readme.txt CHANGED
@@ -2,10 +2,10 @@
2
  Contributors: syammohanm
3
  Donate link: http://wpfront.com/donate/
4
  Tags: scroll to top, back to top, scroll top, scroll up, wordpress scroll top
5
- Requires at least: 4.1
6
  Tested up to: 5.7
7
  Requires PHP: 5.3
8
- Stable tag: 2.0.3
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -53,6 +53,9 @@ Visit [WPFront Scroll Top FAQ](http://wpfront.com/scroll-top-plugin-faq/) page f
53
 
54
  == Changelog ==
55
 
 
 
 
56
  = 2.0.3 =
57
  * jQuery deprecation fixes.
58
  * Compatibility fixes.
@@ -136,6 +139,9 @@ Visit [WPFront Scroll Top FAQ](http://wpfront.com/scroll-top-plugin-faq/) page f
136
 
137
  == Upgrade Notice ==
138
 
 
 
 
139
  = 2.0.3 =
140
  * Compatibility fixes.
141
 
2
  Contributors: syammohanm
3
  Donate link: http://wpfront.com/donate/
4
  Tags: scroll to top, back to top, scroll top, scroll up, wordpress scroll top
5
+ Requires at least: 5.0
6
  Tested up to: 5.7
7
  Requires PHP: 5.3
8
+ Stable tag: 2.0.4
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
53
 
54
  == Changelog ==
55
 
56
+ = 2.0.4 =
57
+ * WP compatibility fix.
58
+
59
  = 2.0.3 =
60
  * jQuery deprecation fixes.
61
  * Compatibility fixes.
139
 
140
  == Upgrade Notice ==
141
 
142
+ = 2.0.4 =
143
+ * Compatibility fix.
144
+
145
  = 2.0.3 =
146
  * Compatibility fixes.
147
 
wpfront-scroll-top.php CHANGED
@@ -3,8 +3,8 @@
3
  * Plugin Name: WPFront Scroll Top
4
  * Plugin URI: http://wpfront.com/scroll-top-plugin/
5
  * Description: Allows the visitor to easily scroll back to the top of the page.
6
- * Version: 2.0.3.03232
7
- * Requires at least: 4.1
8
  * Requires PHP: 5.3
9
  * Author: Syam Mohan
10
  * Author URI: http://wpfront.com
3
  * Plugin Name: WPFront Scroll Top
4
  * Plugin URI: http://wpfront.com/scroll-top-plugin/
5
  * Description: Allows the visitor to easily scroll back to the top of the page.
6
+ * Version: 2.0.4.04013
7
+ * Requires at least: 5.0
8
  * Requires PHP: 5.3
9
  * Author: Syam Mohan
10
  * Author URI: http://wpfront.com