You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -36,9 +36,9 @@ The plugin can be downloaded and installed right from your WordPress administrat
36
36
37
37
### From the Github Repository
38
38
39
-
Go to the [releases](https://github.com/mike-weiner/display-event-locations-tec/releases) section of the repository and download the `wordpress-display-event-locations-tec.zip` from the most recent release.
39
+
Go to the [releases](https://github.com/mike-weiner/display-event-locations-tec/releases) section of the repository and download the `wordpress-[version]-display-event-locations-tec.zip` from the most recent release.
40
40
41
-
Once you have downloaded the `wordpress-display-event-locations-tec.zip` from the releases section of this repo sign into the backend of your WordPress website. From your WordPress administration panel, go to `Plugins > Add New` and click the gray `Upload Plugin` button at the top of the page. Select the `wordpress-display-event-locations-tec.zip` file to upload from your machine when prompted.
41
+
Once you have downloaded the `wordpress-[version]-display-event-locations-tec.zip` from the releases section of this repo sign into the backend of your WordPress website. From your WordPress administration panel, go to `Plugins > Add New` and click the gray `Upload Plugin` button at the top of the page. Select the `wordpress-[version]-display-event-locations-tec.zip` file to upload from your machine when prompted.
42
42
43
43
WordPress will install the plugin. Once the installation is complete, you will be able to activate the plugin and begin using it! Enjoy!
44
44
@@ -144,6 +144,30 @@ As great as the block editor is it can cause issues, sometimes. For events that
144
144
145
145
## Changelog
146
146
147
+
### 3.3
148
+
* Released on June 24, 2020
149
+
* Added: Tested up to tag changed to 5.4.2 as support with WordPress 5.4.2 has been confirmed
150
+
* Added: Stable tag changed to 3.3 to reflect latest version
151
+
* Added: Support with The Events Calendar 5.1.4 has been confirmed
152
+
* Added: Support with The Events Calendar PRO 5.1.3 has been confirmed
153
+
* Fixed: Removed excess HTML from `tooltip.php` in `/tribe-events/month/`
154
+
* Fixed: New Author URI that will link out to my new personal website
155
+
* Fixed: Clarified the description of `.deltec-tooltip-message` in the CSS classes area of the arbitrary section of the README
156
+
* Fixed: Fixed the typo in admin warning that is displayed with The Events Calendar is not activated on the site
157
+
* Fixed: Fixed typos in `plugin.php` file
158
+
* Fixed: Fixed the typo in special thanks section of the README
159
+
* Fixed: Fixed typos in previous upgrade notices within the README
160
+
* Fixed: Fixed typos in the comments of `settings-callbacks.php` in `includes/settings-page/`
161
+
* Fixed: Fixed typos in the comments of `settings-page.php` in `includes/settings-page/`
162
+
* Fixed: Fixed typos in the comments of `settings-validate.php` in `includes/settings-page/`
@@ -247,7 +271,7 @@ As great as the block editor is it can cause issues, sometimes. For events that
247
271
### 2.1
248
272
* Released on January 8, 2020
249
273
* Added: The event street address can now be displayed within the tooltip underneath the location name.
250
-
* Added: Uninstallation Hook (Your settings for this plugin will now be deleted from the wp_ database when you uninstall this plugin.)
274
+
* Added: Uninstall Hook (Your settings for this plugin will now be deleted from the wp_ database when you uninstall this plugin.)
251
275
* Added: An additional line break has been added to featured event tooltips to make things more readable!
252
276
* Added: Travis CI has been implemented to automatically check for any syntax and compatibility issues with modern and common versions of PHP.
253
277
* Added: New screenshots of the plugin to show the new feature of being able to add the street address to the tooltip.
@@ -310,6 +334,9 @@ As great as the block editor is it can cause issues, sometimes. For events that
310
334
311
335
## Upgrade Notice
312
336
337
+
### 3.3
338
+
Today's update continues quality of life improvements to help better your experience while also working to keep our footprint on your installation to a minimum. Unnecessary code has been removed. Typos continue to be fixed. Comments have been simplified. Documentation has been reworded for clarity. Updated developer contact information and URIs have been put into place. -- As always, if you experience any issues open a support ticket and I'll get you up and running. Have a great, productive day!
339
+
313
340
### 3.2
314
341
Today's update brings a revamp of the CSS class structure for all information that this plugin adds to the tooltip in your monthly view! You can now control the stylization of all of the individual components that can be added to the tooltip to display your event's location and its street address (if enabled). You can find more detailed information about the new CSS class structure in the Arbitrary section on CSS Classes of the Github Repository[README](https://github.com/mike-weiner/display-event-locations-tec#css-classes). Support for WordPress 5.4.1 has also been confirmed in testing. As always, please let us know if you experience any issues!
315
342
@@ -355,7 +382,6 @@ Initial release!
355
382
*`.deltec-street-address` - A `span` element that surrounds the all elements of the street address for the event's venue/location (if enabled in Display Event Location for The Events Calendar settings area)
356
383
357
384
### Github Repository
358
-
359
385
The Github Repository can be found here: https://github.com/mike-weiner/display-event-locations-tec.
$deltec_dfahtml .= '<label for="deltec_options_display_full_address">Enable the full address to be displayed underneath the venue/location name within the tooltip.</label>';
58
58
59
-
// Eacho out the html for the input tag and the label that will be displayed for the 'Show Full Venue Address Inside Tooltip' checkbox
59
+
// Echo out the html for the input tag and the label that will be displayed for the 'Show Full Venue Address Inside Tooltip' checkbox
Copy file name to clipboardExpand all lines: includes/settings-page/settings-register.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ function deltec_register_settings(){
30
30
['id' => 'pre-venue-message', 'label' => "Enter the message/phrase that you would like to display before the event location name in the tooltip."] // Array that contains data for the callback function
31
31
);
32
32
33
-
// Adds setting field for chekcbox to display full address or not inside of tooltip
33
+
// Adds setting field for checkbox to display full address or not inside of tooltip
34
34
add_settings_field (
35
35
'display-full-address', // Setting ID
36
36
'Show Full Venue Address Inside Tooltip', // Title of the setting displayed on the page
Copy file name to clipboardExpand all lines: plugin.php
+15-15
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
<?php
2
2
/**
3
3
* Plugin Name: Display Event Location for The Events Calendar
4
-
* Plugin URI: https://thetechsurge.com/
4
+
* Plugin URI: https://michaelweiner.org/
5
5
* Description: Add the event venue/location to the tooltip that is displayed on hover over in the month view of the calendar when using The Events Calendar or The Events Calendar Pro by Modern Tribe.
esc_html__( 'Display Event Location for The Events Calendar requires The Events Claendar to function properly. Please, install and activate the latest version of', 'tribe-events-calendar' ),
141
+
esc_html__( 'Display Event Location for The Events Calendar requires The Events Calendar to function properly. Please, install and activate the latest version of', 'tribe-events-calendar' ),
142
142
esc_url( $deltec_url ),
143
143
esc_html__( 'The Events Calendar', 'tribe-events-calendar' ),
144
144
esc_html__( 'The Events Calendar', 'tribe-events-calendar' )
@@ -150,7 +150,7 @@ function deltec_error_install_tec_plugin() {
150
150
151
151
152
152
/**
153
-
* Check to determine if The Events Calendar pluin is activated anytime a plugin is activated or deactivated
153
+
* Check to determine if The Events Calendar plugin is activated anytime a plugin is activated or deactivated
154
154
*
155
155
* @see deltec_error_install_tec_plugin()
156
156
*/
@@ -178,14 +178,14 @@ function deltec_on_activate(){
178
178
* Initialize default deltec_options to WP options database upon installation
179
179
*/
180
180
functiondeltec_on_uninstall() {
181
-
// Remove deltec_options from the WP database upon uninstallation
181
+
// Remove deltec_options from the WP database upon deletion
0 commit comments