Version Description
- Added pro version url.
=
Download this release
Release Info
Developer | wpdevart |
Plugin | Countdown Timer – Widget Countdown |
Version | 1.5.7 |
Comparing to | |
See all releases |
Code changes from version 1.5.6 to 1.5.7
- readme.txt +6 -2
- wpdevart-countdown.php +12 -1
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Countdown WordPress 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, time counter, countdown system, countdown form
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.6.1
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -359,6 +359,10 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
|
|
359 |
|
360 |
* Edit comments.
|
361 |
|
|
|
|
|
|
|
|
|
362 |
== Wordpress Countdown step by step guide ==
|
363 |
|
364 |
### WordPress Countdown plugin options
|
1 |
=== Countdown WordPress 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, time counter, countdown system, countdown form, time counter
|
5 |
Requires at least: 3.3.0
|
6 |
Tested up to: 4.6.1
|
7 |
+
Stable tag: 1.5.7
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
359 |
|
360 |
* Edit comments.
|
361 |
|
362 |
+
= 1.5.7 =
|
363 |
+
|
364 |
+
* Added pro version url.
|
365 |
+
|
366 |
== Wordpress Countdown step by step guide ==
|
367 |
|
368 |
### 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: Countdown plugin is an nice tool to create and insert countdown timers into your posts/pages and widgets .
|
6 |
-
Version: 1.5.
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -68,6 +68,17 @@ class wpdevart_countdown_main{
|
|
68 |
public function call_base_filters(){
|
69 |
add_action( 'init', array($this,'registr_requeried_scripts') );
|
70 |
add_action( 'admin_head', array($this,'include_requeried_scripts') );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
}
|
72 |
public function include_requeried_scripts(){
|
73 |
wp_enqueue_script('wp-color-picker');
|
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.5.7
|
7 |
Author: wpdevart
|
8 |
Author URI: http://wpdevart.com
|
9 |
License: GPL3 http://www.gnu.org/licenses/gpl-3.0.html
|
68 |
public function call_base_filters(){
|
69 |
add_action( 'init', array($this,'registr_requeried_scripts') );
|
70 |
add_action( 'admin_head', array($this,'include_requeried_scripts') );
|
71 |
+
//for_upgrade
|
72 |
+
add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array($this,'plugin_activate_sublink') );
|
73 |
+
}
|
74 |
+
public function plugin_activate_sublink($links){
|
75 |
+
$plugin_submenu_added_link=array();
|
76 |
+
$added_link = array(
|
77 |
+
'<a target="_blank" style="color: rgba(10, 154, 62, 1); font-weight: bold; font-size: 13px;" href="http://wpdevart.com/wordpress-countdown-plugin">Upgrade to Pro</a>',
|
78 |
+
);
|
79 |
+
$plugin_submenu_added_link=array_merge( $plugin_submenu_added_link, $added_link );
|
80 |
+
$plugin_submenu_added_link=array_merge( $plugin_submenu_added_link, $links );
|
81 |
+
return $plugin_submenu_added_link;
|
82 |
}
|
83 |
public function include_requeried_scripts(){
|
84 |
wp_enqueue_script('wp-color-picker');
|