Version Description
- Description correction.
Download this release
Release Info
Developer | syammohanm |
Plugin | WPFront Notification Bar |
Version | 1.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.8 to 1.8.1
classes/class-wpfront-notification-bar.php
CHANGED
@@ -34,7 +34,7 @@ if (!class_exists('WPFront_Notification_Bar')) {
|
|
34 |
class WPFront_Notification_Bar {
|
35 |
|
36 |
//Constants
|
37 |
-
const VERSION = '1.8';
|
38 |
const OPTIONS_GROUP_NAME = 'wpfront-notification-bar-options-group';
|
39 |
const OPTION_NAME = 'wpfront-notification-bar-options';
|
40 |
const PLUGIN_SLUG = 'wpfront-notification-bar';
|
34 |
class WPFront_Notification_Bar {
|
35 |
|
36 |
//Constants
|
37 |
+
const VERSION = '1.8.1';
|
38 |
const OPTIONS_GROUP_NAME = 'wpfront-notification-bar-options-group';
|
39 |
const OPTION_NAME = 'wpfront-notification-bar-options';
|
40 |
const PLUGIN_SLUG = 'wpfront-notification-bar';
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: syammohanm
|
|
3 |
Donate link: http://wpfront.com/donate/
|
4 |
Tags: notification bar, wordpress notification bar, top bar, bottom bar, notification, bar, quick bar, fixed bar, sticky bar, message bar, message, floating bar, notice, sticky header, special offer, discount offer, offer, important, attention bar, highlight bar, popup bar, hellobar, heads up, heads up bar, headsup, headsupbar, popup, Toolbar
|
5 |
Requires at least: 5.0
|
6 |
-
Tested up to: 5.
|
7 |
Requires PHP: 7.0
|
8 |
-
Stable tag: 1.8
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -64,12 +64,13 @@ The new version(1.3) allows you to filter the bar based on user roles. In this c
|
|
64 |
|
65 |
== Screenshots ==
|
66 |
|
67 |
-
1.
|
68 |
-
2. Bar on bottom.
|
69 |
-
3. Settings page.
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
73 |
= 1.8 =
|
74 |
* Preview mode.
|
75 |
* Debug mode.
|
3 |
Donate link: http://wpfront.com/donate/
|
4 |
Tags: notification bar, wordpress notification bar, top bar, bottom bar, notification, bar, quick bar, fixed bar, sticky bar, message bar, message, floating bar, notice, sticky header, special offer, discount offer, offer, important, attention bar, highlight bar, popup bar, hellobar, heads up, heads up bar, headsup, headsupbar, popup, Toolbar
|
5 |
Requires at least: 5.0
|
6 |
+
Tested up to: 5.7
|
7 |
Requires PHP: 7.0
|
8 |
+
Stable tag: 1.8.1
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
64 |
|
65 |
== Screenshots ==
|
66 |
|
67 |
+
1. Settings page.
|
|
|
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.8.1 =
|
72 |
+
* Description correction.
|
73 |
+
|
74 |
= 1.8 =
|
75 |
* Preview mode.
|
76 |
* Debug mode.
|
templates/options-template.php
CHANGED
@@ -220,7 +220,7 @@
|
|
220 |
</th>
|
221 |
<td>
|
222 |
<input type="checkbox" name="<?php echo $this->options->hide_small_device_name(); ?>" <?php echo $this->options->hide_small_device() ? "checked" : ""; ?> />
|
223 |
-
<span class="description"><?php echo __('[
|
224 |
</td>
|
225 |
</tr>
|
226 |
<tr>
|
@@ -229,7 +229,7 @@
|
|
229 |
</th>
|
230 |
<td>
|
231 |
<input class="pixels" name="<?php echo $this->options->small_device_width_name(); ?>" value="<?php echo $this->options->small_device_width(); ?>" />px
|
232 |
-
<span class="description"><?php echo __('[
|
233 |
</td>
|
234 |
</tr>
|
235 |
<tr>
|
@@ -238,7 +238,7 @@
|
|
238 |
</th>
|
239 |
<td>
|
240 |
<input type="checkbox" name="<?php echo $this->options->hide_small_window_name(); ?>" <?php echo $this->options->hide_small_window() ? "checked" : ""; ?> />
|
241 |
-
<span class="description"><?php echo __('[
|
242 |
</td>
|
243 |
</tr>
|
244 |
<tr>
|
@@ -247,7 +247,7 @@
|
|
247 |
</th>
|
248 |
<td>
|
249 |
<input class="pixels" name="<?php echo $this->options->small_window_width_name(); ?>" value="<?php echo $this->options->small_window_width(); ?>" />px
|
250 |
-
<span class="description"><?php echo __('[
|
251 |
</td>
|
252 |
</tr>
|
253 |
</table>
|
220 |
</th>
|
221 |
<td>
|
222 |
<input type="checkbox" name="<?php echo $this->options->hide_small_device_name(); ?>" <?php echo $this->options->hide_small_device() ? "checked" : ""; ?> />
|
223 |
+
<span class="description"><?php echo __('[Notification bar will be hidden on small devices when the width matches.]', 'wpfront-notification-bar'); ?></span>
|
224 |
</td>
|
225 |
</tr>
|
226 |
<tr>
|
229 |
</th>
|
230 |
<td>
|
231 |
<input class="pixels" name="<?php echo $this->options->small_device_width_name(); ?>" value="<?php echo $this->options->small_device_width(); ?>" />px
|
232 |
+
<span class="description"><?php echo __('[Notification bar will be hidden on devices with lesser or equal width.]', 'wpfront-notification-bar'); ?></span>
|
233 |
</td>
|
234 |
</tr>
|
235 |
<tr>
|
238 |
</th>
|
239 |
<td>
|
240 |
<input type="checkbox" name="<?php echo $this->options->hide_small_window_name(); ?>" <?php echo $this->options->hide_small_window() ? "checked" : ""; ?> />
|
241 |
+
<span class="description"><?php echo __('[Notification bar will be hidden on broswer window when the width matches.]', 'wpfront-notification-bar'); ?></span>
|
242 |
</td>
|
243 |
</tr>
|
244 |
<tr>
|
247 |
</th>
|
248 |
<td>
|
249 |
<input class="pixels" name="<?php echo $this->options->small_window_width_name(); ?>" value="<?php echo $this->options->small_window_width(); ?>" />px
|
250 |
+
<span class="description"><?php echo __('[Notification bar will be hidden on browser window with lesser or equal width.]', 'wpfront-notification-bar'); ?></span>
|
251 |
</td>
|
252 |
</tr>
|
253 |
</table>
|
wpfront-notification-bar.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WPFront Notification Bar
|
4 |
* Plugin URI: http://wpfront.com/notification-bar-plugin/
|
5 |
* Description: Easily lets you create a bar on top or bottom to display a notification.
|
6 |
-
* Version: 1.8
|
7 |
* Requires at least: 5.0
|
8 |
* Requires PHP: 7.0
|
9 |
* Author: Syam Mohan
|
3 |
* Plugin Name: WPFront Notification Bar
|
4 |
* Plugin URI: http://wpfront.com/notification-bar-plugin/
|
5 |
* Description: Easily lets you create a bar on top or bottom to display a notification.
|
6 |
+
* Version: 1.8.1
|
7 |
* Requires at least: 5.0
|
8 |
* Requires PHP: 7.0
|
9 |
* Author: Syam Mohan
|