63a3e80a

Rp 0

set bunga rustic plastik ilalang

Product Details

Field LabelField Value
Kode BarangN.53
NamaDaun Kering Artificial Coklat Tua Set Bunga Rustic Plastik Ilalang
Deskripsiset bunga rustic plastik ilalang
Quantity1
Key63a3e80a
Status BarangValio
Diambil Pada27/03/2023

Storage Details

TaxonomyTerms
Ruang SimpanGudang Group A
Tempat SimpanRak C

Additional Details

TaxonomyTerms
Kategori BarangBunga
JenisDaun Kering
MaterialArtificial
TemaClassic
WarnaCoklat Tua
Perolehan Barang OlehValio
Status BarangValio

Rp 0

Quantity
Add to cart
SKU: N.53 Category:

Product Recently View

Read More

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