Version Description
- Edit admin options.
=
Download this release
Release Info
Developer | wpdevart |
Plugin | Countdown Timer – Widget Countdown |
Version | 1.2.6 |
Comparing to | |
See all releases |
Code changes from version 1.2.5 to 1.2.6
- includes/admin_menu.php +2 -2
- includes/widget.php +2 -2
- readme.txt +6 -2
- wpdevart-countdown.php +1 -1
includes/admin_menu.php
CHANGED
@@ -182,7 +182,7 @@ class wpdevart_countdown_admin_menu{
|
|
182 |
</tr>
|
183 |
<tr>
|
184 |
<td>
|
185 |
-
|
186 |
</td>
|
187 |
<td>
|
188 |
<input type="text" name="countdown_top_distance" id="countdown_top_distance" value="10">(Px)
|
@@ -190,7 +190,7 @@ class wpdevart_countdown_admin_menu{
|
|
190 |
</tr>
|
191 |
<tr>
|
192 |
<td>
|
193 |
-
|
194 |
</td>
|
195 |
<td>
|
196 |
<input type="text" name="countdown_bottom_distance" id="countdown_bottom_distance" value="10">(Px)
|
182 |
</tr>
|
183 |
<tr>
|
184 |
<td>
|
185 |
+
Countdown distance from top <span title="Type the Countdown distance from top." class="desription_class">?</span>
|
186 |
</td>
|
187 |
<td>
|
188 |
<input type="text" name="countdown_top_distance" id="countdown_top_distance" value="10">(Px)
|
190 |
</tr>
|
191 |
<tr>
|
192 |
<td>
|
193 |
+
Countdown distance from bottom <span title="Type the Countdown distance from bottom." class="desription_class">?</span>
|
194 |
</td>
|
195 |
<td>
|
196 |
<input type="text" name="countdown_bottom_distance" id="countdown_bottom_distance" value="10">(Px)
|
includes/widget.php
CHANGED
@@ -190,13 +190,13 @@ class wpdevart_countdown extends WP_Widget {
|
|
190 |
</p>
|
191 |
|
192 |
<p class="flb_field">
|
193 |
-
<label for="<?php echo $this->get_field_id('top_ditance'); ?>">
|
194 |
<br>
|
195 |
<input id="<?php echo $this->get_field_id('top_ditance'); ?>" name="<?php echo $this->get_field_name('top_ditance'); ?>" type="text" value="<?php echo $instance['top_ditance']; ?>" class="widefat">
|
196 |
</p>
|
197 |
|
198 |
<p class="flb_field">
|
199 |
-
<label for="<?php echo $this->get_field_id('bottom_distance'); ?>">
|
200 |
<br>
|
201 |
<input id="<?php echo $this->get_field_id('bottom_distance'); ?>" name="<?php echo $this->get_field_name('bottom_distance'); ?>" type="text" value="<?php echo $instance['bottom_distance']; ?>" class="widefat">
|
202 |
</p>
|
190 |
</p>
|
191 |
|
192 |
<p class="flb_field">
|
193 |
+
<label for="<?php echo $this->get_field_id('top_ditance'); ?>">Countdown distance from top:</label>
|
194 |
<br>
|
195 |
<input id="<?php echo $this->get_field_id('top_ditance'); ?>" name="<?php echo $this->get_field_name('top_ditance'); ?>" type="text" value="<?php echo $instance['top_ditance']; ?>" class="widefat">
|
196 |
</p>
|
197 |
|
198 |
<p class="flb_field">
|
199 |
+
<label for="<?php echo $this->get_field_id('bottom_distance'); ?>">Countdown distance from bottom:</label>
|
200 |
<br>
|
201 |
<input id="<?php echo $this->get_field_id('bottom_distance'); ?>" name="<?php echo $this->get_field_name('bottom_distance'); ?>" type="text" value="<?php echo $instance['bottom_distance']; ?>" class="widefat">
|
202 |
</p>
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== WordPress Countdown plugin ===
|
2 |
Contributors: wpdevart
|
3 |
Donate link: http://wpdevart.com/wordpress-countdown-plugin
|
4 |
-
Tags: countdown, count down, countdown timer, jQuery countdown, countdown generator, animated countdown, countdown widget, timer, countdown clock, wp countdown timer, event countdown, widget countdown, clock, countdown to time, countdown timer plugin, wordpress countdown, birthday countdown, html5 countdown, wp countdown, countdown timer widget, website countdown, date countdown, flash countdown
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.2.3
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -215,6 +215,10 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
|
|
215 |
|
216 |
* Edit menu options.
|
217 |
|
|
|
|
|
|
|
|
|
218 |
== Wordpress Countdown step by step guide ==
|
219 |
|
220 |
### WordPress Countdown plugin options
|
1 |
=== WordPress Countdown plugin ===
|
2 |
Contributors: wpdevart
|
3 |
Donate link: http://wpdevart.com/wordpress-countdown-plugin
|
4 |
+
Tags: countdown, count down, countdown timer, jQuery countdown, countdown generator, animated countdown, countdown widget, timer, countdown clock, wp countdown timer, event countdown, widget countdown, clock, countdown to time, countdown timer plugin, wordpress countdown, birthday countdown, html5 countdown, wp countdown, countdown timer widget, website countdown, date countdown, flash countdown
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.2.3
|
7 |
+
Stable tag: 1.2.6
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
215 |
|
216 |
* Edit menu options.
|
217 |
|
218 |
+
= 1.2.6 =
|
219 |
+
|
220 |
+
* Edit admin options.
|
221 |
+
|
222 |
== Wordpress Countdown step by step guide ==
|
223 |
|
224 |
### WordPress Countdown plugin options
|
wpdevart-countdown.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Countdown Wpdevart
|
4 |
Plugin URI: http://wpdevart.com/wordpress-countdown-plugin/
|
5 |
Description: WordPress Countdown plugin is an nice tool to create and insert countdown timers into your posts/pages and widgets .
|
6 |
-
Version: 1.2.
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|
3 |
Plugin Name: Countdown Wpdevart
|
4 |
Plugin URI: http://wpdevart.com/wordpress-countdown-plugin/
|
5 |
Description: WordPress Countdown plugin is an nice tool to create and insert countdown timers into your posts/pages and widgets .
|
6 |
+
Version: 1.2.6
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|