The Events Calendar Pro Virtual Events Addon

The Events Calendar Pro Virtual Events Addon v1.15.8

No permission to download

tanierlyons

Well-known member
Staff member
Administrator
Moderator
May 24, 2018
72,992
110,699
120
bobsmith updated The Events Calendar Pro Virtual Events Addon with a new update entry:

The Events Calendar Pro Virtual Events Addon v1.9.0

Download The Events Calendar Pro Virtual Events Addon v1.9.0 Nulled Free
= [1.9.0] 2022-03-30 =

* Feature - Add an option to generate a Webex meeting from the event editor and display meeting details on the event. [VE-502]
* Feature - Connect existing Webex Meetings to your events using the new 'Smart' url field. [VE-484]
* Fix - Fix high number of YouTube or Zoom user API calls by switching to a persistent cache. [VE-500]
* Fix - Fix issue that would cause the show to setting to...

Read the rest of this update entry...
 

bobsmith

Busy in real life so uploads will be soon
Null Master
Trusted Uploader
May 4, 2022
2,977
2,941
113
UK
New upload coming soon....

 
  • Like
Reactions: Mykerinus

tanierlyons

Well-known member
Staff member
Administrator
Moderator
May 24, 2018
72,992
110,699
120
Tomz updated The Events Calendar Pro Virtual Events Addon with a new update entry:

The Events Calendar Pro Virtual Events Addon v1.10.0

Download The Events Calendar Pro Virtual Events Addon v1.10.0 Nulled Free
= [v1.10.0] 2022-05-19 =

* Version - Virtual Events 1.10.0 is only compatible with The Events Calendar 5.15.0 and higher
* Feature - Add compatibility to the new TEC admin menu system. [ET-1335]
* Language - 1 new strings added, 34 updated, 0 fuzzied, and 1 obsoleted

Read the rest of this update entry...
 

andrewintw

New member
May 8, 2022
2
1
3
* version v1.10.0

I saw "return" in line 73 at events-virtual.php. It cause the function not works. After remove it, it works. I think maybe it's a test code and the author forgot to remove before release. I also upload my fixed version here.

```
// Add a second action to handle the case where Common is not loaded, we still want to let the user know what is happening.
add_action( 'plugins_loaded', 'tribe_events_virtual_preload', 50 );
return;
```
 

Attachments

  • the-events-calendar-virtual-events-1.10.0-fixed.zip
    460.5 KB · Views: 17
  • Like
Reactions: torsky

bobsmith

Busy in real life so uploads will be soon
Null Master
Trusted Uploader
May 4, 2022
2,977
2,941
113
UK
* version v1.10.0

I saw "return" in line 73 at events-virtual.php. It cause the function not works. After remove it, it works. I think maybe it's a test code and the author forgot to remove before release. I also upload my fixed version here.

```
// Add a second action to handle the case where Common is not loaded, we still want to let the user know what is happening.
add_action( 'plugins_loaded', 'tribe_events_virtual_preload', 50 );
return;
```

Thanks, however main download has already been sorted. 👍
 
  • Love
Reactions: tanierlyons

torsky

New member
Mar 28, 2021
25
9
3
* version v1.10.0

I saw "return" in line 73 at events-virtual.php. It cause the function not works. After remove it, it works. I think maybe it's a test code and the author forgot to remove before release. I also upload my fixed version here.

```
// Add a second action to handle the case where Common is not loaded, we still want to let the user know what is happening.
add_action( 'plugins_loaded', 'tribe_events_virtual_preload', 50 );
return;
```
Thank you for the fix.
 

bobsmith

Busy in real life so uploads will be soon
Null Master
Trusted Uploader
May 4, 2022
2,977
2,941
113
UK
Virtual Events 1.10.1
By Jaime on 7.5.22 Virtual Events

Summary
Maintenance Release
The latest version of Virtual Events was updated to work properly with Community Events.
As always, we recommend testing updates on a staging site first, but it should all be smooth sailing.

🗣 Translations
Updated language files and strings:

0 new strings added
1 updated
0 fuzzied
0 obsoleted
 

jigarashar

Active member
Jan 7, 2019
121
33
28
Virtual Events 1.10.1
By Jaime on 7.5.22 Virtual Events

Summary
Maintenance Release
The latest version of Virtual Events was updated to work properly with Community Events.
As always, we recommend testing updates on a staging site first, but it should all be smooth sailing.

🗣 Translations
Updated language files and strings:

0 new strings added
1 updated
0 fuzzied
0 obsoleted
Could you please help with Virtual Events Addon v1.10.1? Thanks in Adavance! 🙏
 
Last edited by a moderator:
  • Like
Reactions: bobsmith

bobsmith

Busy in real life so uploads will be soon
Null Master
Trusted Uploader
May 4, 2022
2,977
2,941
113
UK
Could you please help with Virtual Events Addon v1.10.1? Thanks in Adavance! 🙏

This will be added in the thread for it here as main download and not anywhere else.

@Tomz can you get this one as I currently only have access to version already in this thread. 😒
 
Last edited:

tanierlyons

Well-known member
Staff member
Administrator
Moderator
May 24, 2018
72,992
110,699
120
bobsmith updated The Events Calendar Pro Virtual Events Addon with a new update entry:

The Events Calendar Pro Virtual Events Addon v1.11.0

Download The Events Calendar Pro Virtual Events Addon v1.11.0 Nulled Free
= [1.11.0] 2022-07-18 =

* Feature - Add an option to generate a Google Event with Meet from the event editor and display meeting details on the event. [VE-517]
* Feature - Connect existing Google Event with Meet to your events using the new 'Smart' url field. [VE-514]
* Fix - Ensure if Zoom password requires a special character that the generated password includes at least 1. [VE-524]
* Tweak - Include...

Read the rest of this update entry...
 
  • Like
Reactions: JRGWxRxZ

NoOoB

Active member
Sep 29, 2019
245
188
43
@Tomz not working. I fixed it
Next time try not to take credit for something that had already been talked about and fix mentioned. 😒


File : events-virtual.php

Original
PHP:
// Add a second action to handle the case where Common is not loaded, we still want to let the user know what is happening.
add_action( 'plugins_loaded', 'tribe_events_virtual_preload', 50 );
return;

Fixed
PHP:
// Add a second action to handle the case where Common is not loaded, we still want to let the user know what is happening.
add_action( 'plugins_loaded', 'tribe_events_virtual_preload', 50 );
 
Last edited by a moderator:

bobsmith

Busy in real life so uploads will be soon
Null Master
Trusted Uploader
May 4, 2022
2,977
2,941
113
UK
@Tomz not working. I fixed it

File : events-virtual.php

Original
PHP:
// Add a second action to handle the case where Common is not loaded, we still want to let the user know what is happening.
add_action( 'plugins_loaded', 'tribe_events_virtual_preload', 50 );
return;

Fixed
PHP:
// Add a second action to handle the case where Common is not loaded, we still want to let the user know what is happening.
add_action( 'plugins_loaded', 'tribe_events_virtual_preload', 50 );
lol you fixed it and yet it had already been discussed by @andrewintw in June 2022 and posted on same page.

* version v1.10.0

I saw "return" in line 73 at events-virtual.php. It cause the function not works. After remove it, it works. I think maybe it's a test code and the author forgot to remove before release. I also upload my fixed version here.

```
// Add a second action to handle the case where Common is not loaded, we still want to let the user know what is happening.
add_action( 'plugins_loaded', 'tribe_events_virtual_preload', 50 );
return;
```

Next time try not to take credit for something that had already been talked about and fix mentioned. 😒

@Tomz main download has been changed.
 
Last edited:

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu