f6e549e9

Rp 0

1 Pcs

Product Details

Field LabelField Value
Kode BarangV.232
NamaHiasan Rak Kayu Putih
Deskripsi1 Pcs
Quantity1
Keyf6e549e9
Status BarangValio

Dimensions

Field LabelField Value
Panjang15
Lebar10
Tinggi20

Storage Details

TaxonomyTerms
Ruang SimpanGudang Lt.5 B
Tempat SimpanRak V
Box SimpanBox W

Additional Details

TaxonomyTerms
Kategori BarangHiasan Rak
JenisHiasan Rak
MaterialKayu
TemaClassic
WarnaPutih
Status BarangValio

Rp 0

Quantity
Add to cart
SKU: V.232 Category:

Product Recently View

Read More

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