WPFront Scroll Top - Version 2.0.2

Version Description

  • Fixes WordPress 5.2 site health, wp_version_check, conflict.
Download this release

Release Info

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

Code changes from version 2.0.1 to 2.0.2

classes/class-wpfront-scroll-top.php CHANGED
@@ -34,7 +34,7 @@ require_once("class-wpfront-scroll-top-options.php");
34
  */
35
  class WPFront_Scroll_Top {
36
  //Constants
37
- const VERSION = '2.0.1';
38
  const OPTIONS_GROUP_NAME = 'wpfront-scroll-top-options-group';
39
  const OPTION_NAME = 'wpfront-scroll-top-options';
40
  const PLUGIN_SLUG = 'wpfront-scroll-top';
@@ -73,9 +73,6 @@ class WPFront_Scroll_Top {
73
  $this->iconsDIR = $this->pluginDIRRoot . 'images/icons/';
74
 
75
  add_action('plugins_loaded', array($this, 'plugins_loaded'));
76
-
77
- add_action('wp_footer', array($this, 'write_markup'));
78
- add_action('shutdown', array($this, 'shutdown_callback'));
79
 
80
  $this->add_activation_redirect();
81
 
@@ -83,9 +80,14 @@ class WPFront_Scroll_Top {
83
  add_action('admin_init', array($this, 'admin_init'));
84
  add_action('admin_menu', array($this, 'admin_menu'));
85
  add_filter('plugin_action_links', array($this, 'action_links'), 10, 2);
 
 
86
  } else {
87
  add_action('wp_enqueue_scripts', array($this, 'enqueue_styles'));
88
  add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'));
 
 
 
89
  }
90
  }
91
 
34
  */
35
  class WPFront_Scroll_Top {
36
  //Constants
37
+ const VERSION = '2.0.2';
38
  const OPTIONS_GROUP_NAME = 'wpfront-scroll-top-options-group';
39
  const OPTION_NAME = 'wpfront-scroll-top-options';
40
  const PLUGIN_SLUG = 'wpfront-scroll-top';
73
  $this->iconsDIR = $this->pluginDIRRoot . 'images/icons/';
74
 
75
  add_action('plugins_loaded', array($this, 'plugins_loaded'));
 
 
 
76
 
77
  $this->add_activation_redirect();
78
 
80
  add_action('admin_init', array($this, 'admin_init'));
81
  add_action('admin_menu', array($this, 'admin_menu'));
82
  add_filter('plugin_action_links', array($this, 'action_links'), 10, 2);
83
+
84
+ add_action('admin_footer', array($this, 'write_markup'));
85
  } else {
86
  add_action('wp_enqueue_scripts', array($this, 'enqueue_styles'));
87
  add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'));
88
+
89
+ add_action('wp_footer', array($this, 'write_markup'));
90
+ add_action('shutdown', array($this, 'shutdown_callback'));
91
  }
92
  }
93
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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: 4.9.6
7
- Stable tag: 2.0.1
8
  Requires PHP: 5.3
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -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.1 =
57
  * Link to element.
58
  * Link to page.
@@ -128,6 +131,9 @@ Visit [WPFront Scroll Top FAQ](http://wpfront.com/scroll-top-plugin-faq/) page f
128
 
129
  == Upgrade Notice ==
130
 
 
 
 
131
  = 2.0.1 =
132
  * New features added.
133
 
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.2
7
+ Stable tag: 2.0.2
8
  Requires PHP: 5.3
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
53
 
54
  == Changelog ==
55
 
56
+ = 2.0.2 =
57
+ * Fixes WordPress 5.2 site health, wp_version_check, conflict.
58
+
59
  = 2.0.1 =
60
  * Link to element.
61
  * Link to page.
131
 
132
  == Upgrade Notice ==
133
 
134
+ = 2.0.2 =
135
+ * Bug fix.
136
+
137
  = 2.0.1 =
138
  * New features added.
139
 
wpfront-scroll-top.php CHANGED
@@ -3,7 +3,7 @@
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.1
7
  * Author: Syam Mohan
8
  * Author URI: http://wpfront.com
9
  * License: GPL v3
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.2
7
  * Author: Syam Mohan
8
  * Author URI: http://wpfront.com
9
  * License: GPL v3