Description
simple
jQuery(document).ready(function($) { $('.elementor-loop-item').each(function() { var stock = parseInt($(this).find('.seats-remaining').data('stock'), 10); if (stock < = 0) { var button = $(this).find('.book-now-btn'); button.addClass('disabled').attr('disabled', true).css({ 'pointer-events': 'none', 'opacity': '0.5', 'cursor': 'not-allowed' }); button.text('Sold Out'); // Optional: Change button text } }); });
Skip to content