Version Description
- Update User Account template
=
Download this release
Release Info
Developer | leehld |
Plugin | WP Events Manager |
Version | 2.1.7.4 |
Comparing to | |
See all releases |
Code changes from version 2.1.7.3 to 2.1.7.4
- readme.txt +5 -2
- templates/shortcodes/user-account.php +5 -1
- wp-events-manager.php +2 -2
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== WP Events Manager ===
|
2 |
-
Contributors: thimpress, leehld
|
3 |
Donate link: https://thimpress.com/
|
4 |
Tags: event, event management, events, registration, bookings, tickets, locations, google maps
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 4.9.8
|
7 |
-
Stable tag: 2.1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -149,5 +149,8 @@ To stay in touch and update about FundPress's future releases and features, you
|
|
149 |
- Update pagination for archive event page
|
150 |
- Add feature event tag
|
151 |
|
|
|
|
|
|
|
152 |
== Upgrade Notice ==
|
153 |
|
1 |
=== WP Events Manager ===
|
2 |
+
Contributors: thimpress, leehld, phamtungpth
|
3 |
Donate link: https://thimpress.com/
|
4 |
Tags: event, event management, events, registration, bookings, tickets, locations, google maps
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 4.9.8
|
7 |
+
Stable tag: 2.1.7.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
149 |
- Update pagination for archive event page
|
150 |
- Add feature event tag
|
151 |
|
152 |
+
= 2.1.7.4 =
|
153 |
+
- Update User Account template
|
154 |
+
|
155 |
== Upgrade Notice ==
|
156 |
|
templates/shortcodes/user-account.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
*
|
7 |
* @author ThimPress, leehld
|
8 |
* @package WP-Events-Manager/Template
|
9 |
-
* @version 2.1.7
|
10 |
*/
|
11 |
|
12 |
/**
|
@@ -82,6 +82,10 @@ if ( $query->have_posts() ) { ?>
|
|
82 |
) );
|
83 |
?>
|
84 |
|
|
|
|
|
|
|
|
|
85 |
<?php } ?>
|
86 |
|
87 |
<?php wp_reset_postdata(); ?>
|
6 |
*
|
7 |
* @author ThimPress, leehld
|
8 |
* @package WP-Events-Manager/Template
|
9 |
+
* @version 2.1.7.4
|
10 |
*/
|
11 |
|
12 |
/**
|
82 |
) );
|
83 |
?>
|
84 |
|
85 |
+
<?php } else { ?>
|
86 |
+
<p><?php esc_html_e( 'No event booking has been made yet.', 'wp-events-manager' ); ?></p>
|
87 |
+
<a class="button"
|
88 |
+
href="<?php echo get_post_type_archive_link( 'tp_event' ); ?>"><?php esc_html_e( 'Go to Events', 'wp-events-manager' ); ?></a>
|
89 |
<?php } ?>
|
90 |
|
91 |
<?php wp_reset_postdata(); ?>
|
wp-events-manager.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: http://thimpress.com/
|
5 |
Description: A complete plugin for Events management and online booking system
|
6 |
Author: ThimPress
|
7 |
-
Version: 2.1.7.
|
8 |
Author URI: http://thimpress.com
|
9 |
*/
|
10 |
|
@@ -42,7 +42,7 @@ if ( ! class_exists( 'WPEMS' ) ) {
|
|
42 |
$this->set_define( 'WPEMS_INC_URI', WPEMS_URI . 'inc/' );
|
43 |
$this->set_define( 'WPEMS_ASSETS_URI', WPEMS_URI . 'assets/' );
|
44 |
$this->set_define( 'WPEMS_LIB_URI', WPEMS_INC_URI . 'libraries/' );
|
45 |
-
$this->set_define( 'WPEMS_VER', '2.1.7.
|
46 |
$this->set_define( 'WPEMS_MAIN_FILE', __FILE__ );
|
47 |
}
|
48 |
|
4 |
Plugin URI: http://thimpress.com/
|
5 |
Description: A complete plugin for Events management and online booking system
|
6 |
Author: ThimPress
|
7 |
+
Version: 2.1.7.4
|
8 |
Author URI: http://thimpress.com
|
9 |
*/
|
10 |
|
42 |
$this->set_define( 'WPEMS_INC_URI', WPEMS_URI . 'inc/' );
|
43 |
$this->set_define( 'WPEMS_ASSETS_URI', WPEMS_URI . 'assets/' );
|
44 |
$this->set_define( 'WPEMS_LIB_URI', WPEMS_INC_URI . 'libraries/' );
|
45 |
+
$this->set_define( 'WPEMS_VER', '2.1.7.4' );
|
46 |
$this->set_define( 'WPEMS_MAIN_FILE', __FILE__ );
|
47 |
}
|
48 |
|