Version Description
Download this release
Release Info
Developer | wpdevart |
Plugin | Countdown Timer – Widget Countdown |
Version | 1.8.2 |
Comparing to | |
See all releases |
Code changes from version 1.8.0 to 1.8.2
- includes/admin_menu.php +1 -1
- includes/front_end.php +3 -3
- includes/style/jquery-ui-style.css +1 -0
- includes/widget.php +3 -3
- readme.txt +1 -1
- wpdevart-countdown.php +3 -1
includes/admin_menu.php
CHANGED
@@ -170,7 +170,7 @@ class wpdevart_countdown_admin_menu{
|
|
170 |
</tr>
|
171 |
<tr>
|
172 |
<td>
|
173 |
-
Message after countdown
|
174 |
</td>
|
175 |
<td>
|
176 |
<textarea type="text" name="expeiret_text" id="expeiret_text"></textarea>
|
170 |
</tr>
|
171 |
<tr>
|
172 |
<td>
|
173 |
+
Message after countdown expire<span title="Type the message that will appear after countdown time expire. " class="desription_class">?</span>
|
174 |
</td>
|
175 |
<td>
|
176 |
<textarea type="text" name="expeiret_text" id="expeiret_text"></textarea>
|
includes/front_end.php
CHANGED
@@ -56,11 +56,11 @@ class wpdevart_countdown_front_end{
|
|
56 |
"start_time" => mktime (date("H"), date("i"), date("s"),date("n"), date("j"),date("Y")),
|
57 |
"countdown_end_type" => "time",
|
58 |
"end_date" => date('d-m-Y 23:59'),
|
59 |
-
"end_time" => "0,
|
60 |
"action_end_time" => "hide",
|
61 |
"content_position" => "center",
|
62 |
-
"top_ditance" => "
|
63 |
-
"bottom_distance" => "
|
64 |
"content" =>$content
|
65 |
), $atts);
|
66 |
|
56 |
"start_time" => mktime (date("H"), date("i"), date("s"),date("n"), date("j"),date("Y")),
|
57 |
"countdown_end_type" => "time",
|
58 |
"end_date" => date('d-m-Y 23:59'),
|
59 |
+
"end_time" => "0,9,9",
|
60 |
"action_end_time" => "hide",
|
61 |
"content_position" => "center",
|
62 |
+
"top_ditance" => "11",
|
63 |
+
"bottom_distance" => "11",
|
64 |
"content" =>$content
|
65 |
), $atts);
|
66 |
|
includes/style/jquery-ui-style.css
CHANGED
@@ -446,6 +446,7 @@ button.ui-button::-moz-focus-inner {
|
|
446 |
-ms-touch-action: none;
|
447 |
touch-action: none;
|
448 |
}
|
|
|
449 |
.ui-menu {
|
450 |
list-style: none;
|
451 |
padding: 0;
|
446 |
-ms-touch-action: none;
|
447 |
touch-action: none;
|
448 |
}
|
449 |
+
/*Menu style*/
|
450 |
.ui-menu {
|
451 |
list-style: none;
|
452 |
padding: 0;
|
includes/widget.php
CHANGED
@@ -62,13 +62,13 @@ class wpdevart_countdown extends WP_Widget {
|
|
62 |
'text_for_second' => 'Seconds',
|
63 |
'start_time' => mktime (date("H"), date("i"), date("s"),date("n"), date("j"),date("Y")),
|
64 |
'end_time_type' => 'time',
|
65 |
-
'end_time' => '0,
|
66 |
'end_time_date' => date('d-m-Y 23:59'),
|
67 |
'action_end_time' => 'hide',
|
68 |
'content' => '',
|
69 |
'content_position' => 'center',
|
70 |
-
'top_ditance' => '
|
71 |
-
'bottom_distance' => '
|
72 |
);
|
73 |
$instance = wp_parse_args( (array) $instance, $defaults );
|
74 |
?>
|
62 |
'text_for_second' => 'Seconds',
|
63 |
'start_time' => mktime (date("H"), date("i"), date("s"),date("n"), date("j"),date("Y")),
|
64 |
'end_time_type' => 'time',
|
65 |
+
'end_time' => '0,9,9',
|
66 |
'end_time_date' => date('d-m-Y 23:59'),
|
67 |
'action_end_time' => 'hide',
|
68 |
'content' => '',
|
69 |
'content_position' => 'center',
|
70 |
+
'top_ditance' => '9',
|
71 |
+
'bottom_distance' => '9',
|
72 |
);
|
73 |
$instance = wp_parse_args( (array) $instance, $defaults );
|
74 |
?>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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 timer plugin, wordpress countdown, html5 countdown, wp countdown, countdown timer widget, website countdown, date countdown, flash countdown, time counter, countdown system
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.7.3
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
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 timer plugin, wordpress countdown, html5 countdown, wp countdown, countdown timer widget, website countdown, date countdown, flash countdown, time counter, countdown system
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.7.3
|
7 |
+
Stable tag: 1.8.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
wpdevart-countdown.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Countdown Wpdevart
|
4 |
Plugin URI: http://wpdevart.com/wordpress-countdown-plugin/
|
5 |
Description: Countdown plugin is an nice tool to create and insert countdown timers into your posts/pages and widgets .
|
6 |
-
Version: 1.8.
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -58,6 +58,8 @@ class wpdevart_countdown_main{
|
|
58 |
$wpdevart_countdown_front_end = new wpdevart_countdown_front_end(array('menu_name' => 'countdown','databese_parametrs'=>$this->wpdevart_countdown_options));
|
59 |
|
60 |
}
|
|
|
|
|
61 |
|
62 |
public function registr_requeried_scripts(){
|
63 |
wp_register_script('countdown-front-end',$this->wpdevart_countdown_plugin_url.'includes/javascript/front_end_js.js');
|
3 |
Plugin Name: Countdown Wpdevart
|
4 |
Plugin URI: http://wpdevart.com/wordpress-countdown-plugin/
|
5 |
Description: Countdown plugin is an nice tool to create and insert countdown timers into your posts/pages and widgets .
|
6 |
+
Version: 1.8.1
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|
58 |
$wpdevart_countdown_front_end = new wpdevart_countdown_front_end(array('menu_name' => 'countdown','databese_parametrs'=>$this->wpdevart_countdown_options));
|
59 |
|
60 |
}
|
61 |
+
|
62 |
+
/*############ Register required scripts function ##################*/
|
63 |
|
64 |
public function registr_requeried_scripts(){
|
65 |
wp_register_script('countdown-front-end',$this->wpdevart_countdown_plugin_url.'includes/javascript/front_end_js.js');
|