Showing 46–60 of 466 results

146

Rp 0

syall merah

147

Rp 0

pita coklat bear

149

Rp 0

TANPA BAJU

151

Rp 0

dasi garis

152

Rp 0

pita pink love didada

15281d29

Rp 0

Daun hijau bunga kecil 3 tangkai

152c4c12

Rp 0

1 Daun Gulung

153

Rp 0

dress Merah

jQuery(document).ready(function ($) { // Hook into the form submission event $('form#frm_form_3').on('submit', function (e) { e.preventDefault(); // Prevent form submission temporarily // Get the SKU field value var productSku = $('#field_sku2').val(); // Replace 'field_sku2' with your SKU field ID if (!productSku) { alert('Please enter a SKU.'); return false; // Stop submission } // Check if SKU is unique via AJAX $.ajax({ url: ajaxurl, // WordPress AJAX endpoint type: 'POST', data: { action: 'validate_unique_sku', sku: productSku, }, success: function (response) { if (response.success) { // SKU is unique, proceed with form submission $('form#frm_form_3').unbind('submit').submit(); // Re-enable and submit the form } else { // SKU is not unique, display an alert alert('SKU "' + productSku + '" is already taken. Please use a unique SKU.'); } }, error: function () { alert('An error occurred while validating the SKU. Please try again.'); }, }); }); });