Version Description
- Added
q2w3-fixed-widget-sidebar-options
filter for widget options in the frontend.
Download this release
Release Info
Developer | webzunft |
Plugin | Q2W3 Fixed Widget |
Version | 5.2.0 |
Comparing to | |
See all releases |
Code changes from version 5.1.9 to 5.2.0
- q2w3-fixed-widget.php +5 -3
- readme.txt +11 -4
q2w3-fixed-widget.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://wpadvancedads.com/fixed-widget-wordpress/
|
|
5 |
Description: Use the fixed widget plugin to create sticky widgets that stay in the visible screen area when the page is scrolled up or down and boost your conversions.
|
6 |
Text Domain: q2w3-fixed-widget
|
7 |
Author: Thomas Maier, Max Bond
|
8 |
-
Version: 5.
|
9 |
Author URI: https://wpadvancedads.com/fixed-widget-wordpress/
|
10 |
*/
|
11 |
|
@@ -17,7 +17,7 @@ class q2w3_fixed_widget { // Plugin class
|
|
17 |
|
18 |
const ID = 'q2w3_fixed_widget';
|
19 |
|
20 |
-
const VERSION = '5.
|
21 |
|
22 |
protected static $sidebars_widgets;
|
23 |
|
@@ -127,8 +127,10 @@ class q2w3_fixed_widget { // Plugin class
|
|
127 |
);
|
128 |
|
129 |
$i++;
|
130 |
-
|
131 |
}
|
|
|
|
|
132 |
|
133 |
wp_localize_script( self::ID, 'q2w3_sidebar_options', $sidebar_options );
|
134 |
|
5 |
Description: Use the fixed widget plugin to create sticky widgets that stay in the visible screen area when the page is scrolled up or down and boost your conversions.
|
6 |
Text Domain: q2w3-fixed-widget
|
7 |
Author: Thomas Maier, Max Bond
|
8 |
+
Version: 5.2.0
|
9 |
Author URI: https://wpadvancedads.com/fixed-widget-wordpress/
|
10 |
*/
|
11 |
|
17 |
|
18 |
const ID = 'q2w3_fixed_widget';
|
19 |
|
20 |
+
const VERSION = '5.2.0';
|
21 |
|
22 |
protected static $sidebars_widgets;
|
23 |
|
127 |
);
|
128 |
|
129 |
$i++;
|
130 |
+
|
131 |
}
|
132 |
+
|
133 |
+
$sidebar_options = apply_filters( 'q2w3-fixed-widget-sidebar-options', $sidebar_options );
|
134 |
|
135 |
wp_localize_script( self::ID, 'q2w3_sidebar_options', $sidebar_options );
|
136 |
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Q2W3 Fixed Widget for WordPress ===
|
2 |
Contributors: webzunft, max-bond, advancedads
|
3 |
Tags: fixed widget, sticky widget, sidebar, ads, widget
|
4 |
-
Requires at least:
|
5 |
-
Tested up to: 5.
|
6 |
-
Stable tag: 5.
|
7 |
|
8 |
More attention and a higher ad performance with fixed sticky widgets.
|
9 |
|
@@ -73,13 +73,20 @@ There are two options: `Disable Width` and `Disable Height`. They works the same
|
|
73 |
|
74 |
== Changelog ==
|
75 |
|
|
|
|
|
|
|
|
|
76 |
= 5.1.9 =
|
77 |
-
|
|
|
78 |
|
79 |
= 5.1.8 =
|
|
|
80 |
* Fixed JavaScript bug that caused jumping / flickering of fixed widgets.
|
81 |
|
82 |
= 5.1.7 =
|
|
|
83 |
* Fixed "a.target.className.indexOf is not a function" bug
|
84 |
|
85 |
= 5.1.6 =
|
1 |
=== Q2W3 Fixed Widget for WordPress ===
|
2 |
Contributors: webzunft, max-bond, advancedads
|
3 |
Tags: fixed widget, sticky widget, sidebar, ads, widget
|
4 |
+
Requires at least: 5.0
|
5 |
+
Tested up to: 5.6
|
6 |
+
Stable tag: 5.2.0
|
7 |
|
8 |
More attention and a higher ad performance with fixed sticky widgets.
|
9 |
|
73 |
|
74 |
== Changelog ==
|
75 |
|
76 |
+
= 5.2.0 =
|
77 |
+
|
78 |
+
- Added `q2w3-fixed-widget-sidebar-options` filter for widget options in the frontend.
|
79 |
+
|
80 |
= 5.1.9 =
|
81 |
+
|
82 |
+
* Fixed JavaScript events which were not called in some setups.
|
83 |
|
84 |
= 5.1.8 =
|
85 |
+
|
86 |
* Fixed JavaScript bug that caused jumping / flickering of fixed widgets.
|
87 |
|
88 |
= 5.1.7 =
|
89 |
+
|
90 |
* Fixed "a.target.className.indexOf is not a function" bug
|
91 |
|
92 |
= 5.1.6 =
|