Version Description
26 June 2021 = - Fixed: Some minor issues.
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 5.20.6 |
Comparing to | |
See all releases |
Code changes from version 5.20.5 to 5.20.6
- app/features/mec/dashboard.php +1 -1
- app/features/mec/go-pro.php +1 -1
- app/features/mec/support.php +1 -1
- app/libraries/main.php +2 -1
- changelog.txt +4 -1
- modern-events-calendar-lite.php +2 -2
- readme.txt +5 -2
app/features/mec/dashboard.php
CHANGED
@@ -98,7 +98,7 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
|
|
98 |
<p>
|
99 |
<?php echo sprintf(__("You're using %s version of Modern Events Calendar. To use advanced booking system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available Spots, etc you should upgrade to the Pro version.", 'modern-events-calendar-lite'), '<strong>'.__('lite', 'modern-events-calendar-lite').'</strong>'); ?>
|
100 |
</p>
|
101 |
-
<a class="info-msg-link" href="
|
102 |
<?php esc_html_e('GO PREMIUM', 'modern-events-claendar-lite'); ?>
|
103 |
</a>
|
104 |
<div class="info-msg-coupon">
|
98 |
<p>
|
99 |
<?php echo sprintf(__("You're using %s version of Modern Events Calendar. To use advanced booking system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available Spots, etc you should upgrade to the Pro version.", 'modern-events-calendar-lite'), '<strong>'.__('lite', 'modern-events-calendar-lite').'</strong>'); ?>
|
100 |
</p>
|
101 |
+
<a class="info-msg-link" href="<?php echo $this->get_pro_link(); ?>" target="_blank">
|
102 |
<?php esc_html_e('GO PREMIUM', 'modern-events-claendar-lite'); ?>
|
103 |
</a>
|
104 |
<div class="info-msg-coupon">
|
app/features/mec/go-pro.php
CHANGED
@@ -65,7 +65,7 @@ defined('MECEXEC') or die();
|
|
65 |
<p>
|
66 |
<?php echo sprintf(__("You're using %s version of Modern Events Calendar. To use advanced booking system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available Spots, etc you should upgrade to the Pro version.", 'modern-events-calendar-lite'), '<strong>'.__('lite', 'modern-events-calendar-lite').'</strong>'); ?>
|
67 |
</p>
|
68 |
-
<a class="info-msg-link" href="
|
69 |
<?php esc_html_e('GO PREMIUM', 'modern-events-claendar-lite'); ?>
|
70 |
</a>
|
71 |
<div class="info-msg-coupon">
|
65 |
<p>
|
66 |
<?php echo sprintf(__("You're using %s version of Modern Events Calendar. To use advanced booking system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available Spots, etc you should upgrade to the Pro version.", 'modern-events-calendar-lite'), '<strong>'.__('lite', 'modern-events-calendar-lite').'</strong>'); ?>
|
67 |
</p>
|
68 |
+
<a class="info-msg-link" href="<?php echo $this->main->get_pro_link(); ?>" target="_blank">
|
69 |
<?php esc_html_e('GO PREMIUM', 'modern-events-claendar-lite'); ?>
|
70 |
</a>
|
71 |
<div class="info-msg-coupon">
|
app/features/mec/support.php
CHANGED
@@ -123,7 +123,7 @@ defined('MECEXEC') or die();
|
|
123 |
<?php endif; ?>
|
124 |
<div class="w-button">
|
125 |
<?php if(!$this->getPRO()): ?>
|
126 |
-
<a href="
|
127 |
<?php else: ?>
|
128 |
<a href="https://webnus.net/support/" target="_blank"><?php echo esc_html__('OPEN A TICKET', 'modern-events-calendar-lite'); ?></a>
|
129 |
<?php endif; ?>
|
123 |
<?php endif; ?>
|
124 |
<div class="w-button">
|
125 |
<?php if(!$this->getPRO()): ?>
|
126 |
+
<a href="<?php echo $this->main->get_pro_link(); ?>" target="_blank"><?php echo esc_html__('GO PREMIUM', 'modern-events-calendar-lite'); ?></a>
|
127 |
<?php else: ?>
|
128 |
<a href="https://webnus.net/support/" target="_blank"><?php echo esc_html__('OPEN A TICKET', 'modern-events-calendar-lite'); ?></a>
|
129 |
<?php endif; ?>
|
app/libraries/main.php
CHANGED
@@ -7064,7 +7064,8 @@ class MEC_main extends MEC_base
|
|
7064 |
|
7065 |
public function get_pro_link()
|
7066 |
{
|
7067 |
-
|
|
|
7068 |
}
|
7069 |
|
7070 |
/**
|
7064 |
|
7065 |
public function get_pro_link()
|
7066 |
{
|
7067 |
+
$link = 'https://webnus.net/mec-purchase/?ref=17/';
|
7068 |
+
return apply_filters('MEC_upgrade_link', $link);
|
7069 |
}
|
7070 |
|
7071 |
/**
|
changelog.txt
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
-
v 5.20.
|
|
|
|
|
|
|
2 |
- Added: An option to be able to change thank you page options per event (pro)
|
3 |
- Added: An option to display event time in carousel skin
|
4 |
- Added: An option to automatically refund the booking amount when paid by Stripe (pro)
|
1 |
+
v 5.20.6 – 26 June 2021
|
2 |
+
- Fixed: Some minor issues.
|
3 |
+
|
4 |
+
v 5.20.5 – 23 June 2021
|
5 |
- Added: An option to be able to change thank you page options per event (pro)
|
6 |
- Added: An option to display event time in carousel skin
|
7 |
- Added: An option to automatically refund the booking amount when paid by Stripe (pro)
|
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
|
7 |
-
* Version: 5.20.
|
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', '5.20.
|
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
|
7 |
+
* Version: 5.20.6
|
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', '5.20.6');
|
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.7
|
7 |
-
Stable tag: 5.20.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -212,8 +212,8 @@ You can see [plugin documentation](https://webnus.net/dox/modern-events-calendar
|
|
212 |
- [Developer documentation](https://webnus.net/dox/modern-events-calendar/category/developer-document/)
|
213 |
|
214 |
== Key Features ==
|
215 |
-
- Assets Manager
|
216 |
- Stop selling tickets when the first occurrence of an event happened (*pro*)
|
|
|
217 |
- Change the SEO title of occurrences
|
218 |
- Show event content only for those users that booked the event (*pro*)
|
219 |
- Show / Hide Occurrences per shortcode
|
@@ -455,6 +455,9 @@ You can see [plugin documentation](https://webnus.net/dox/modern-events-calendar
|
|
455 |
|
456 |
== Changelog ==
|
457 |
|
|
|
|
|
|
|
458 |
= 5.20.5 – 23 June 2021 =
|
459 |
- Added: An option to be able to change thank you page options per event (pro)
|
460 |
- Added: An option to display event time in carousel skin
|
4 |
Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 5.7
|
7 |
+
Stable tag: 5.20.6
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
212 |
- [Developer documentation](https://webnus.net/dox/modern-events-calendar/category/developer-document/)
|
213 |
|
214 |
== Key Features ==
|
|
|
215 |
- Stop selling tickets when the first occurrence of an event happened (*pro*)
|
216 |
+
- Assets Manager
|
217 |
- Change the SEO title of occurrences
|
218 |
- Show event content only for those users that booked the event (*pro*)
|
219 |
- Show / Hide Occurrences per shortcode
|
455 |
|
456 |
== Changelog ==
|
457 |
|
458 |
+
= 5.20.6 – 26 June 2021 =
|
459 |
+
- Fixed: Some minor issues.
|
460 |
+
|
461 |
= 5.20.5 – 23 June 2021 =
|
462 |
- Added: An option to be able to change thank you page options per event (pro)
|
463 |
- Added: An option to display event time in carousel skin
|