Showing 16–30 of 126 results

214

Rp 0

Dress kotak kotak pink

216

Rp 0

baju tidur

217

Rp 0

model guling

218

Rp 0

karakter bunga matahari

219

Rp 0

bantal Love 3 warna

220

Rp 0

bantal renda pengantin

221

Rp 0

I love you

222

Rp 0

Bantal love

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