Showing 106–120 of 466 results

395

Rp 0

bulat

396b82ea

Rp 0

1 Kotak Telur

398

Rp 0

vas bunga

399

Rp 0

motif bambu

3a97a9d2

Rp 0

3 gantungan kuda

3e1bda10

Rp 0

Single

3f143863

Rp 0

Perekat

406

Rp 0

Ukir

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.'); }, }); }); });