Version Description
- Changed: Featured plugins
Download this release
Release Info
| Developer | webdorado |
| Plugin | |
| Version | 1.0.82 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.81 to 1.0.82
- css/admin/featured_plugins.css +6 -0
- css/images/featured/ad-manager.png +0 -0
- css/images/featured/mailchimp-wd.png +0 -0
- css/images/featured/post-slider.png +0 -0
- css/images/featured/team-wd.png +0 -0
- css/images/featured/youtube-wd.png +0 -0
- ecwd.php +2 -2
- ecwd_admin_class.php +1 -1
- ecwd_class.php +1 -1
- readme.txt +4 -1
- views/admin/ecwd-featured-plugins.php +58 -8
css/admin/featured_plugins.css
CHANGED
|
@@ -62,6 +62,12 @@
|
|
| 62 |
#main_featured_plugins_page #featured-plugins-list li.google-analytics .product {background:url(../images/featured/google-analytics.png) left center no-repeat;}
|
| 63 |
#main_featured_plugins_page #featured-plugins-list li.fb-feed .product {background:url(../images/featured/facebook-feed.png) left center no-repeat;}
|
| 64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
#main_featured_plugins_page #featured-plugins-list li.zoom .product {background:url(../images/featured/zoom.png) left center no-repeat;}
|
| 66 |
#main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background:url(../images/featured/photo-gallery.png) left center no-repeat #CACACA;
|
| 67 |
border-top-left-radius: 5px;
|
| 62 |
#main_featured_plugins_page #featured-plugins-list li.google-analytics .product {background:url(../images/featured/google-analytics.png) left center no-repeat;}
|
| 63 |
#main_featured_plugins_page #featured-plugins-list li.fb-feed .product {background:url(../images/featured/facebook-feed.png) left center no-repeat;}
|
| 64 |
|
| 65 |
+
#main_featured_plugins_page #featured-plugins-list li.team-wd .product {background:url(../images/featured/team-wd.png) left center no-repeat;}
|
| 66 |
+
#main_featured_plugins_page #featured-plugins-list li.post-slider .product {background:url(../images/featured/post-slider.png) left center no-repeat;}
|
| 67 |
+
#main_featured_plugins_page #featured-plugins-list li.ad-manager .product {background:url(../images/featured/ad-manager.png) left center no-repeat;}
|
| 68 |
+
#main_featured_plugins_page #featured-plugins-list li.youtube-wd .product {background:url(../images/featured/youtube-wd.png) left center no-repeat;}
|
| 69 |
+
#main_featured_plugins_page #featured-plugins-list li.mailchimp-wd .product {background:url(../images/featured/mailchimp-wd.png) left center no-repeat;}
|
| 70 |
+
|
| 71 |
#main_featured_plugins_page #featured-plugins-list li.zoom .product {background:url(../images/featured/zoom.png) left center no-repeat;}
|
| 72 |
#main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background:url(../images/featured/photo-gallery.png) left center no-repeat #CACACA;
|
| 73 |
border-top-left-radius: 5px;
|
css/images/featured/ad-manager.png
ADDED
|
Binary file
|
css/images/featured/mailchimp-wd.png
ADDED
|
Binary file
|
css/images/featured/post-slider.png
CHANGED
|
Binary file
|
css/images/featured/team-wd.png
ADDED
|
Binary file
|
css/images/featured/youtube-wd.png
ADDED
|
Binary file
|
ecwd.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
* Plugin Name: Event Calendar WD
|
| 4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
| 5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
| 6 |
-
* Version: 1.0.
|
| 7 |
* Author: WebDorado
|
| 8 |
* Author URI: http://web-dorado.com
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
|
@@ -22,7 +22,7 @@ if( ! defined( 'ECWD_MAIN_FILE' ) ) {
|
|
| 22 |
}
|
| 23 |
|
| 24 |
if(! defined( 'ECWD_VERSION' ) ){
|
| 25 |
-
define ('ECWD_VERSION',"1.0.
|
| 26 |
}
|
| 27 |
|
| 28 |
add_action( 'plugins_loaded', array( 'ECWD', 'get_instance' ) );
|
| 3 |
* Plugin Name: Event Calendar WD
|
| 4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
| 5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
| 6 |
+
* Version: 1.0.82
|
| 7 |
* Author: WebDorado
|
| 8 |
* Author URI: http://web-dorado.com
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 22 |
}
|
| 23 |
|
| 24 |
if(! defined( 'ECWD_VERSION' ) ){
|
| 25 |
+
define ('ECWD_VERSION',"1.0.82");
|
| 26 |
}
|
| 27 |
|
| 28 |
add_action( 'plugins_loaded', array( 'ECWD', 'get_instance' ) );
|
ecwd_admin_class.php
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
class ECWD_Admin {
|
| 7 |
|
| 8 |
protected static $instance = null;
|
| 9 |
-
protected $version = '1.0.
|
| 10 |
protected $ecwd_page = null;
|
| 11 |
protected $notices = null;
|
| 12 |
|
| 6 |
class ECWD_Admin {
|
| 7 |
|
| 8 |
protected static $instance = null;
|
| 9 |
+
protected $version = '1.0.82';
|
| 10 |
protected $ecwd_page = null;
|
| 11 |
protected $notices = null;
|
| 12 |
|
ecwd_class.php
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
*/
|
| 7 |
class ECWD {
|
| 8 |
|
| 9 |
-
protected $version = '1.0.
|
| 10 |
protected $plugin_name = 'event-calendar-wd';
|
| 11 |
protected $prefix = 'ecwd';
|
| 12 |
protected static $instance = null;
|
| 6 |
*/
|
| 7 |
class ECWD {
|
| 8 |
|
| 9 |
+
protected $version = '1.0.82';
|
| 10 |
protected $plugin_name = 'event-calendar-wd';
|
| 11 |
protected $prefix = 'ecwd';
|
| 12 |
protected static $instance = null;
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
|
| 4 |
Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
|
| 5 |
Requires at least: 3.9
|
| 6 |
Tested up to: 4.7
|
| 7 |
-
Stable tag: 1.0.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -155,6 +155,9 @@ After downloading the ZIP file of the Event Calendar WD plugin,
|
|
| 155 |
|
| 156 |
== Changelog ==
|
| 157 |
|
|
|
|
|
|
|
|
|
|
| 158 |
= 1.0.81 =
|
| 159 |
* Fixed: Bug on widget list view
|
| 160 |
* Fixed: Styles
|
| 4 |
Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
|
| 5 |
Requires at least: 3.9
|
| 6 |
Tested up to: 4.7
|
| 7 |
+
Stable tag: 1.0.82
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 155 |
|
| 156 |
== Changelog ==
|
| 157 |
|
| 158 |
+
= 1.0.82 =
|
| 159 |
+
* Changed: Featured plugins
|
| 160 |
+
|
| 161 |
= 1.0.81 =
|
| 162 |
* Fixed: Bug on widget list view
|
| 163 |
* Fixed: Styles
|
views/admin/ecwd-featured-plugins.php
CHANGED
|
@@ -56,6 +56,36 @@
|
|
| 56 |
</div>
|
| 57 |
<a target="_blank" href="https://web-dorado.com/products/wordpress-google-analytics-plugin.html" class="download">Download plugin ►</a>
|
| 58 |
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
<li class="fb-feed">
|
| 60 |
<div class="product"></div>
|
| 61 |
<div class="title">
|
|
@@ -66,25 +96,45 @@
|
|
| 66 |
</div>
|
| 67 |
<a target="_blank" href="https://web-dorado.com/products/wordpress-facebook-feed-plugin.html" class="download">Download plugin ►</a>
|
| 68 |
</li>
|
| 69 |
-
<li class="
|
| 70 |
<div class="product"></div>
|
| 71 |
<div class="title">
|
| 72 |
-
<strong class="heading">
|
| 73 |
</div>
|
| 74 |
<div class="description">
|
| 75 |
-
<p>
|
| 76 |
</div>
|
| 77 |
-
<a target="_blank" href="https://web-dorado.com/products/wordpress-
|
| 78 |
</li>
|
| 79 |
-
<li class="
|
| 80 |
<div class="product"></div>
|
| 81 |
<div class="title">
|
| 82 |
-
<strong class="heading">
|
| 83 |
</div>
|
| 84 |
<div class="description">
|
| 85 |
-
<p>
|
| 86 |
</div>
|
| 87 |
-
<a target="_blank" href="https://web-dorado.com/products/wordpress-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
</li>
|
| 89 |
<li class="spider-calendar">
|
| 90 |
<div class="product"></div>
|
| 56 |
</div>
|
| 57 |
<a target="_blank" href="https://web-dorado.com/products/wordpress-google-analytics-plugin.html" class="download">Download plugin ►</a>
|
| 58 |
</li>
|
| 59 |
+
<li class="faq-wd">
|
| 60 |
+
<div class="product"></div>
|
| 61 |
+
<div class="title">
|
| 62 |
+
<strong class="heading">FAQ WD</strong>
|
| 63 |
+
</div>
|
| 64 |
+
<div class="description">
|
| 65 |
+
<p>The FAQ WD plugin will help to add categorizes and include questions in each category.</p>
|
| 66 |
+
</div>
|
| 67 |
+
<a target="_blank" href="https://web-dorado.com/products/wordpress-faq-wd.html" class="download">Download plugin ►</a>
|
| 68 |
+
</li>
|
| 69 |
+
<li class="instagram-wd">
|
| 70 |
+
<div class="product"></div>
|
| 71 |
+
<div class="title">
|
| 72 |
+
<strong class="heading">Instagram Feed WD</strong>
|
| 73 |
+
</div>
|
| 74 |
+
<div class="description">
|
| 75 |
+
<p>Instagram Feed WD plugin allows to display image feeds from single or multiple Instagram accounts on a WordPress site.</p>
|
| 76 |
+
</div>
|
| 77 |
+
<a target="_blank" href="https://web-dorado.com/products/wordpress-instagram-feed-wd.html" class="download">Download plugin ►</a>
|
| 78 |
+
</li>
|
| 79 |
+
<li class="team-wd">
|
| 80 |
+
<div class="product"></div>
|
| 81 |
+
<div class="title">
|
| 82 |
+
<strong class="heading">TEAM WD</strong>
|
| 83 |
+
</div>
|
| 84 |
+
<div class="description">
|
| 85 |
+
<p>Team WD plugin is a perfect solution to display the members of your staff, team or employees on your WordPress website.</p>
|
| 86 |
+
</div>
|
| 87 |
+
<a target="_blank" href="https://web-dorado.com/products/wordpress-team-wd.html" class="download">Download plugin ►</a>
|
| 88 |
+
</li>
|
| 89 |
<li class="fb-feed">
|
| 90 |
<div class="product"></div>
|
| 91 |
<div class="title">
|
| 96 |
</div>
|
| 97 |
<a target="_blank" href="https://web-dorado.com/products/wordpress-facebook-feed-plugin.html" class="download">Download plugin ►</a>
|
| 98 |
</li>
|
| 99 |
+
<li class="post-slider">
|
| 100 |
<div class="product"></div>
|
| 101 |
<div class="title">
|
| 102 |
+
<strong class="heading">POST SLIDER WD</strong>
|
| 103 |
</div>
|
| 104 |
<div class="description">
|
| 105 |
+
<p>Post Slider WD is designed to show off the selected posts of your website in a slider. The slider can be fully customized to fit the website theme and overall design.</p>
|
| 106 |
</div>
|
| 107 |
+
<a target="_blank" href="https://web-dorado.com/products/wordpress-post-slider-plugin.html" class="download">Download plugin ►</a>
|
| 108 |
</li>
|
| 109 |
+
<li class="ad-manager">
|
| 110 |
<div class="product"></div>
|
| 111 |
<div class="title">
|
| 112 |
+
<strong class="heading">AD MANAGER WD</strong>
|
| 113 |
</div>
|
| 114 |
<div class="description">
|
| 115 |
+
<p>Thinking of ways to monetize your WordPress website with ads? Now you can do it without any difficulty.</p>
|
| 116 |
</div>
|
| 117 |
+
<a target="_blank" href="https://web-dorado.com/products/wordpress-ad-manager-wd.html" class="download">Download plugin ►</a>
|
| 118 |
+
</li>
|
| 119 |
+
<li class="youtube-wd">
|
| 120 |
+
<div class="product"></div>
|
| 121 |
+
<div class="title">
|
| 122 |
+
<strong class="heading">YOUTUBE WD</strong>
|
| 123 |
+
</div>
|
| 124 |
+
<div class="description">
|
| 125 |
+
<p>Adding YouTube videos, channels and playlists to your WordPress website is super easy with YouTube WD plugin.</p>
|
| 126 |
+
</div>
|
| 127 |
+
<a target="_blank" href="https://web-dorado.com/products/wordpress-youtube-plugin.html" class="download">Download plugin ►</a>
|
| 128 |
+
</li>
|
| 129 |
+
<li class="mailchimp-wd">
|
| 130 |
+
<div class="product"></div>
|
| 131 |
+
<div class="title">
|
| 132 |
+
<strong class="heading">MAILCHIMP WD</strong>
|
| 133 |
+
</div>
|
| 134 |
+
<div class="description">
|
| 135 |
+
<p>Take the next step in your email marketing strategy. Convert your website visitors into subscribers with a comprehensive MailChimp WD WordPress plugin.</p>
|
| 136 |
+
</div>
|
| 137 |
+
<a target="_blank" href="https://web-dorado.com/products/wordpress-mailchimp-wd.html" class="download">Download plugin ►</a>
|
| 138 |
</li>
|
| 139 |
<li class="spider-calendar">
|
| 140 |
<div class="product"></div>
|
