Version Description
Fixed: Notification tabs in settings
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.3.2 |
Comparing to | |
See all releases |
Code changes from version 4.3.1 to 4.3.2
- app/features/mec/notifications.php +4 -4
- changelog.txt +4 -1
- modern-events-calendar-lite.php +2 -2
- readme.txt +4 -1
app/features/mec/notifications.php
CHANGED
@@ -52,7 +52,7 @@ $notifications = $this->main->get_notifications();
|
|
52 |
</a>
|
53 |
|
54 |
<ul id="" class="subsection" style="display: block;">
|
55 |
-
|
56 |
<li id="" class="pr-be-group-menu-li active">
|
57 |
<a data-id= "booking_notification" class="wns-be-group-tab-link-a WnTabLinks">
|
58 |
<span class="pr-be-group-menu-title"><?php _e('Booking Notification', 'modern-events-calendar-lite'); ?></span>
|
@@ -88,8 +88,8 @@ $notifications = $this->main->get_notifications();
|
|
88 |
<span class="pr-be-group-menu-title"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></span>
|
89 |
</a>
|
90 |
</li>
|
91 |
-
|
92 |
-
<li id="" class="pr-be-group-menu-li">
|
93 |
<a data-id= "new_event" class="wns-be-group-tab-link-a WnTabLinks">
|
94 |
<span class="pr-be-group-menu-title"><?php _e('New Event', 'modern-events-calendar-lite'); ?></span>
|
95 |
</a>
|
@@ -520,7 +520,7 @@ $notifications = $this->main->get_notifications();
|
|
520 |
|
521 |
<?php endif; ?>
|
522 |
|
523 |
-
<div id="new_event" class="mec-options-fields">
|
524 |
|
525 |
<h4 class="mec-form-subtitle"><?php _e('New Event', 'modern-events-calendar-lite'); ?></h4>
|
526 |
<div class="mec-form-row">
|
52 |
</a>
|
53 |
|
54 |
<ul id="" class="subsection" style="display: block;">
|
55 |
+
<?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
|
56 |
<li id="" class="pr-be-group-menu-li active">
|
57 |
<a data-id= "booking_notification" class="wns-be-group-tab-link-a WnTabLinks">
|
58 |
<span class="pr-be-group-menu-title"><?php _e('Booking Notification', 'modern-events-calendar-lite'); ?></span>
|
88 |
<span class="pr-be-group-menu-title"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></span>
|
89 |
</a>
|
90 |
</li>
|
91 |
+
<?php endif;?>
|
92 |
+
<li id="" class="pr-be-group-menu-li <?php if($this->settings['booking_status'] == 0) echo 'active'; ?>">
|
93 |
<a data-id= "new_event" class="wns-be-group-tab-link-a WnTabLinks">
|
94 |
<span class="pr-be-group-menu-title"><?php _e('New Event', 'modern-events-calendar-lite'); ?></span>
|
95 |
</a>
|
520 |
|
521 |
<?php endif; ?>
|
522 |
|
523 |
+
<div id="new_event" class="mec-options-fields <?php if($this->settings['booking_status'] == 0) echo 'active'; ?>">
|
524 |
|
525 |
<h4 class="mec-form-subtitle"><?php _e('New Event', 'modern-events-calendar-lite'); ?></h4>
|
526 |
<div class="mec-form-row">
|
changelog.txt
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
-
v 4.3.
|
|
|
|
|
|
|
2 |
- Added: "Number of Days" and "Week Start Day" options to clean style of timetable skin
|
3 |
- Added: Instagram to speakers
|
4 |
- Added: Search form to the clean style of timetable skin
|
1 |
+
v 4.3.2 – 17 June 2019
|
2 |
+
Fixed: Notification tabs in settings
|
3 |
+
|
4 |
+
v 4.3.1 – 17 June 2019
|
5 |
- Added: "Number of Days" and "Week Start Day" options to clean style of timetable skin
|
6 |
- Added: Instagram to speakers
|
7 |
- Added: Search form to the clean style of timetable skin
|
modern-events-calendar-lite.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: http://webnus.net/modern-events-calendar/
|
5 |
Description: An awesome plugin for events calendar
|
6 |
Author: Webnus Team
|
7 |
-
Version: 4.3.
|
8 |
Text Domain: modern-events-calendar-lite
|
9 |
Domain Path: /languages
|
10 |
Author URI: http://webnus.net
|
@@ -31,7 +31,7 @@ if(!defined('MECEXEC'))
|
|
31 |
define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
|
32 |
|
33 |
/** Plugin Version **/
|
34 |
-
define('MEC_VERSION', '4.3.
|
35 |
|
36 |
/** Include Webnus MEC class if not included before **/
|
37 |
if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
|
4 |
Plugin URI: http://webnus.net/modern-events-calendar/
|
5 |
Description: An awesome plugin for events calendar
|
6 |
Author: Webnus Team
|
7 |
+
Version: 4.3.2
|
8 |
Text Domain: modern-events-calendar-lite
|
9 |
Domain Path: /languages
|
10 |
Author URI: http://webnus.net
|
31 |
define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
|
32 |
|
33 |
/** Plugin Version **/
|
34 |
+
define('MEC_VERSION', '4.3.2');
|
35 |
|
36 |
/** Include Webnus MEC class if not included before **/
|
37 |
if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://webnus.net
|
|
4 |
Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 5.2.1
|
7 |
-
Stable tag: 4.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -202,6 +202,9 @@ You can see [plugin documentation here](https://webnus.net/dox/modern-events-cal
|
|
202 |
|
203 |
== Changelog ==
|
204 |
|
|
|
|
|
|
|
205 |
= 4.3.1 =
|
206 |
- Added: "Number of Days" and "Week Start Day" options to clean style of timetable skin
|
207 |
- Added: Instagram to speakers
|
4 |
Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 5.2.1
|
7 |
+
Stable tag: 4.3.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
202 |
|
203 |
== Changelog ==
|
204 |
|
205 |
+
= 4.3.2 =
|
206 |
+
Fixed: Notification tabs in settings
|
207 |
+
|
208 |
= 4.3.1 =
|
209 |
- Added: "Number of Days" and "Week Start Day" options to clean style of timetable skin
|
210 |
- Added: Instagram to speakers
|