Version Description
- Added the wp-editor control in description field.
- Test WordPress version 5.0.3 compatibility.
Download this release
Release Info
Developer | priyanshu.mittal |
Plugin | Easy Coming Soon |
Version | 2.3 |
Comparing to | |
See all releases |
Code changes from version 2.2 to 2.3
- coming-soon-plugin.php +1 -1
- readme.txt +6 -2
- theme_options/pages/header_page_settings.php +5 -1
coming-soon-plugin.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name:Easy Coming Soon
|
4 |
Description: Easy coming Soon plugin allows you to quickly create a launch / under construction page for your website. Collect E-mails and connect with users on Social Networks.
|
5 |
-
Version: 2.
|
6 |
Author:Ankit Agarwal, Priyanshu Mittal
|
7 |
Author URI: http://easycomingsoon.com/
|
8 |
Plugin URI: http://easycomingsoon.com/
|
2 |
/*
|
3 |
Plugin Name:Easy Coming Soon
|
4 |
Description: Easy coming Soon plugin allows you to quickly create a launch / under construction page for your website. Collect E-mails and connect with users on Social Networks.
|
5 |
+
Version: 2.3
|
6 |
Author:Ankit Agarwal, Priyanshu Mittal
|
7 |
Author URI: http://easycomingsoon.com/
|
8 |
Plugin URI: http://easycomingsoon.com/
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: a.ankit,priyanshu.mittal
|
|
3 |
Donate link: http://easycomingsoon.com/
|
4 |
Tags: coming soon wordpress plugin,coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, under construction, admin, newsletter, offline, site offline, wordpress coming soon, wordpress under construction, wordpress maintenance mode,email,gmail,subscriber,notify,message,user,preview,wordpress under construction page,wordpress landing page, ultimate coming soon page, ultimate landing page, wordpress maintenance mode plugin
|
5 |
Requires at least: 3.3+
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -121,6 +121,10 @@ In case you face any problem, contact us [here](http://easycomingsoon.com/contac
|
|
121 |
|
122 |
== Changelog ==
|
123 |
|
|
|
|
|
|
|
|
|
124 |
= 2.2 =
|
125 |
1. Fixed the issue of Headline Font Size.
|
126 |
|
3 |
Donate link: http://easycomingsoon.com/
|
4 |
Tags: coming soon wordpress plugin,coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, under construction, admin, newsletter, offline, site offline, wordpress coming soon, wordpress under construction, wordpress maintenance mode,email,gmail,subscriber,notify,message,user,preview,wordpress under construction page,wordpress landing page, ultimate coming soon page, ultimate landing page, wordpress maintenance mode plugin
|
5 |
Requires at least: 3.3+
|
6 |
+
Tested up to: 5.0.3
|
7 |
+
Stable tag: 2.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
121 |
|
122 |
== Changelog ==
|
123 |
|
124 |
+
= 2.3 =
|
125 |
+
1. Added the wp-editor control in description field.
|
126 |
+
2. Test WordPress version 5.0.3 compatibility.
|
127 |
+
|
128 |
= 2.2 =
|
129 |
1. Fixed the issue of Headline Font Size.
|
130 |
|
theme_options/pages/header_page_settings.php
CHANGED
@@ -111,7 +111,11 @@ $general_default_settings = array(
|
|
111 |
<div class="section">
|
112 |
<div class="element">
|
113 |
<h3><?php _e('Description','easy-coming-soon') ?></h3>
|
114 |
-
|
|
|
|
|
|
|
|
|
115 |
</div>
|
116 |
</div>
|
117 |
|
111 |
<div class="section">
|
112 |
<div class="element">
|
113 |
<h3><?php _e('Description','easy-coming-soon') ?></h3>
|
114 |
+
<?php
|
115 |
+
$content = $current_options['descrip'];
|
116 |
+
$editor_id = 'descrip';
|
117 |
+
wp_editor( $content, $editor_id );
|
118 |
+
?>
|
119 |
</div>
|
120 |
</div>
|
121 |
|