Version Description
Download this release
Release Info
Developer | wpdevart |
Plugin | Countdown Timer – Widget Countdown |
Version | 1.9.0 |
Comparing to | |
See all releases |
Code changes from version 1.8.9 to 1.9.0
- images/support.png +0 -0
- includes/admin_menu.php +15 -1
- readme.txt +1 -1
- wpdevart-countdown.php +3 -1
images/support.png
ADDED
Binary file
|
includes/admin_menu.php
CHANGED
@@ -424,7 +424,7 @@ die;
|
|
424 |
|
425 |
public function main_menu_function(){
|
426 |
?>
|
427 |
-
<h2 class="headin_countdown">WordPress Countdown General Page</h2>
|
428 |
<style>
|
429 |
.headin_countdown{
|
430 |
font-size: 23px;
|
@@ -449,6 +449,20 @@ die;
|
|
449 |
font-weight: bold;
|
450 |
font-size: 14px;
|
451 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
</style>
|
453 |
<div class="image_width_description">
|
454 |
<span class="description">For adding countdown timer into your website pages/posts go to your pages/posts editor and use Countdown Insert Button. Click on shortcode button and set Countdown timer options, then click on "Insert Countdown" button. Check the screenshot below</span>
|
424 |
|
425 |
public function main_menu_function(){
|
426 |
?>
|
427 |
+
<h2 class="headin_countdown">WordPress Countdown General Page <a target="blank" href="<?php echo wpdevart_countdown_support_url; ?>" class="wp_support">Support</a></h2>
|
428 |
<style>
|
429 |
.headin_countdown{
|
430 |
font-size: 23px;
|
449 |
font-weight: bold;
|
450 |
font-size: 14px;
|
451 |
}
|
452 |
+
|
453 |
+
/*For Support link*/
|
454 |
+
|
455 |
+
.wp_support {
|
456 |
+
display: inline-block;
|
457 |
+
float: right;
|
458 |
+
background: #fff url(<?php echo $this->plugin_url; ?>images/support.png) no-repeat 7px center;
|
459 |
+
padding: 8px 20px 9px 45px;
|
460 |
+
font-size: 16px;
|
461 |
+
text-decoration: none;
|
462 |
+
border-radius: 2px;
|
463 |
+
border: 1px solid #d4d4d4;
|
464 |
+
margin-right: 20px;
|
465 |
+
}
|
466 |
</style>
|
467 |
<div class="image_width_description">
|
468 |
<span class="description">For adding countdown timer into your website pages/posts go to your pages/posts editor and use Countdown Insert Button. Click on shortcode button and set Countdown timer options, then click on "Insert Countdown" button. Check the screenshot below</span>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wpdevart.com/wordpress-countdown-plugin
|
|
4 |
Tags: countdown, countdown widget, countdown timer, countdown system, countdown generator, count down, jQuery countdown, animated countdown, 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,
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.8.1
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
4 |
Tags: countdown, countdown widget, countdown timer, countdown system, countdown generator, count down, jQuery countdown, animated countdown, 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,
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.8.1
|
7 |
+
Stable tag: 1.9.0
|
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.
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -27,6 +27,8 @@ class wpdevart_countdown_main{
|
|
27 |
|
28 |
$this->wpdevart_countdown_plugin_url = trailingslashit( plugins_url('', __FILE__ ) );
|
29 |
$this->wpdevart_countdown_plugin_path = trailingslashit( plugin_dir_path( __FILE__ ) );
|
|
|
|
|
30 |
|
31 |
if(!class_exists('wpdevart_countdown_setting'))
|
32 |
require_once($this->wpdevart_countdown_plugin_path.'includes/library.php');
|
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.9.0
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|
27 |
|
28 |
$this->wpdevart_countdown_plugin_url = trailingslashit( plugins_url('', __FILE__ ) );
|
29 |
$this->wpdevart_countdown_plugin_path = trailingslashit( plugin_dir_path( __FILE__ ) );
|
30 |
+
//
|
31 |
+
define("wpdevart_countdown_support_url","https://wordpress.org/support/plugin/widget-countdown");
|
32 |
|
33 |
if(!class_exists('wpdevart_countdown_setting'))
|
34 |
require_once($this->wpdevart_countdown_plugin_path.'includes/library.php');
|