diff --git a/.stylelintrc b/.stylelintrc index 72c23d08c4..8f1de4982b 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -6,5 +6,8 @@ "ignoreProperties": ["container-type"] } ] - } + }, + "ignoreFiles": [ + "src/resources/postcss/utilities/**" + ] } diff --git a/common b/common index bbabc62339..68845e726e 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit bbabc623393f6f5f5a4822d3363eee56e383481d +Subproject commit 68845e726e47f216a5139a52996a5df1b2e4d59d diff --git a/event-tickets.php b/event-tickets.php index eb0a04211d..c056ec0945 100644 --- a/event-tickets.php +++ b/event-tickets.php @@ -3,7 +3,7 @@ * Plugin Name: Event Tickets * Plugin URI: https://evnt.is/1acb * Description: Event Tickets allows you to sell basic tickets and collect RSVPs from any post, page, or event. - * Version: 5.13.0 + * Version: 5.13.0.1 * Requires at least: 6.3 * Requires PHP: 7.4 * Author: The Events Calendar diff --git a/readme.txt b/readme.txt index bb253a7b88..abe0150e89 100644 --- a/readme.txt +++ b/readme.txt @@ -2,9 +2,9 @@ Contributors: theeventscalendar, brianjessee, camwynsp, redscar, tribalmike, rafsuntaskin, aguseo, bordoni, borkweb, GeoffBel, jentheo, leahkoerper, lucatume, neillmcshea, vicskf, zbtirrell, juanfra Tags: tickets, event registration, RSVP, ticket sales, attendee management -Stable tag: 5.13.0 +Stable tag: 5.13.0.1 Requires at least: 6.3 -Tested up to: 6.6 +Tested up to: 6.6.1 Requires PHP: 7.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -205,6 +205,11 @@ Check out our extensive [knowledgebase](https://evnt.is/18wm) for articles on us == Changelog == += [5.13.0.1] 2024-07-24 = + +* Fix - Stellar Sale's banner links, details, and HTML tags handling. [TEC-5121] +* Fix - Added missing global property for javascript undefined error `Uncaught TypeError: format is undefined`. This happened during ticket checkout. [ET-2148] + = [5.13.0] 2024-07-22 = * Feature - Included compatibility with Events Tickets Plus 6.0.0 for integrations with Zapier and Power Automate. diff --git a/src/Tickets/Blocks/Tickets/Block.php b/src/Tickets/Blocks/Tickets/Block.php index a5fee7e671..de141ba9ff 100644 --- a/src/Tickets/Blocks/Tickets/Block.php +++ b/src/Tickets/Blocks/Tickets/Block.php @@ -76,8 +76,7 @@ public function render( $attributes = [] ) { public function assets() { // Check whether we use v1 or v2. We need to update this when we deprecate tickets v1. $tickets_js = tribe_tickets_new_views_is_enabled() ? 'v2/tickets-block.js' : 'tickets-block.js'; - - $plugin = Tickets_Main::instance(); + $plugin = Tickets_Main::instance(); tribe_asset( $plugin, diff --git a/src/Tribe/Main.php b/src/Tribe/Main.php index 6e9409cf85..ce8a8b6699 100644 --- a/src/Tribe/Main.php +++ b/src/Tribe/Main.php @@ -15,7 +15,7 @@ class Tribe__Tickets__Main { /** * Current version of this plugin. */ - const VERSION = '5.13.0'; + const VERSION = '5.13.0.1'; /** * Used to store the version history. diff --git a/src/resources/js/v2/tickets-block.js b/src/resources/js/v2/tickets-block.js index 1cf385a6c5..0e11396c4f 100644 --- a/src/resources/js/v2/tickets-block.js +++ b/src/resources/js/v2/tickets-block.js @@ -826,7 +826,12 @@ tribe.tickets.block = { const $ticketsBlock = $document.find( obj.selectors.container ); // Bind events for each tickets block. $ticketsBlock.each( function( index, block ) { - obj.bindEvents( $( block ) ); + const $container = $( block ); + obj.bindEvents( $container ); + + // Initialize provider we use for prices. + const $form = $container.find( obj.selectors.form ); + obj.tribe_tickets_provider = $form.data( 'provider' ); } ); };