| 1 |
jQuery(document).ready(function ($) { |
| 2 |
$("#Basalam-generate-variations").click(function (e) { |
| 3 |
e.preventDefault(); |
| 4 |
if ( |
| 5 |
confirm( |
| 6 |
"آیا � |
| 7 |
ط� |
| 8 |
ئن هستید که � |
| 9 |
یخواهید برای ه� |
| 10 |
ه � |
| 11 |
قادیر ویژگیها � |
| 12 |
تغیر ایجاد کنید؟" |
| 13 |
) |
| 14 |
) { |
| 15 |
let productId = $(this).data("product-id"); |
| 16 |
let nonce = $(this).data("product-nonce"); |
| 17 |
let data = { |
| 18 |
action: "Basalam_generate_variations", |
| 19 |
product_id: productId, |
| 20 |
nonce: nonce, |
| 21 |
}; |
| 22 |
|
| 23 |
$.post(ajaxurl, data, function (response) { |
| 24 |
if (response && response.success) { |
| 25 |
window.BasalamToast.success(response.data?.message || "ع� |
| 26 |
لیات با � |
| 27 |
وفقیت انجا� |
| 28 |
شد."); |
| 29 |
} else { |
| 30 |
window.BasalamToast.error(response?.data?.message || "خطایی رخ داده است."); |
| 31 |
} |
| 32 |
location.reload(); |
| 33 |
}); |
| 34 |
} |
| 35 |
}); |
| 36 |
}); |
| 37 |
|