Showing 1–15 of 298 results

0014d67b

Rp 15.000

40 pcs

00d32a5b

Rp 0

31 ikat padi asli

01baf50b

Rp 0

kentongan bambu

02b392f3

Rp 0

stand foto ukir love

0506036e

Rp 0

dakon kecil

0b9485b7

Rp 0

jagug kering

0d71a526

Rp 0

kelapa kering

0dca300e

Rp 0

2 dingklik bambu

jQuery(document).ready(function ($) { // Hook into the form submission event $('#form_edit-product-form').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 actual 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_edit-product-form').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.'); }, }); }); });