Great things are on the horizon

Something big is brewing! Our store is in the works and will be launching soon!

Shopping Cart
jQuery(document).ready(function($) { $('.reveal-coupon').click(function() { var button = $(this); var couponCode = button.data('coupon'); $.ajax({ url: 'https://just4test1.cloud/wp-admin/admin-ajax.php', type: 'POST', data: { action: 'reveal_coupon', coupon_code: couponCode }, success: function(response) { if(response.success) { button.text('Code: ' + response.data); button.prop('disabled', true); } else { alert(response.data); } } }); }); });