Hi there,
It looks like the id and classes in the ticket form markup have been changed since that extension was last updated. I was able to get it working again.
Replace the contents of tribe-custom.js in the extension with the following:
(function ($) {
var container = $('.tribe-events-tickets');
var block_container = $('#tribe-tickets__tickets-form');
var Tribe_Ticket_Qty = {
init: function () {
var self = this;
// wrapper.find( 'input.tribe-ticket-quantity, .woocommerce .quantity input.qty, .edd.quantity input.edd-input' ).val(1);
if (container.length) {
$inputs = container.find(
'input.tribe-tickets-quantity, .woocommerce .quantity input.qty, .edd.quantity input.edd-input'
);
$inputs.val(1);
$inputs.trigger('change');
}
if (block_container.length) {
$inputs = block_container.find(
'input.tribe-tickets__tickets-item-quantity-number-input'
);
$inputs.val(1);
$inputs.trigger('change');
}
},
};
$(function () {
Tribe_Ticket_Qty.init();
});
})(jQuery);
Let me know if that helps!
Best,
Sky