add_action( 'wp_footer', 'variations_change_javascript', 99999 ); // для фронта
function variations_change_javascript() { ?>
<script>
function empty( mixed_var ) { // Determine whether a variable is empty
return ( mixed_var === "" || mixed_var === 0 || mixed_var === "0" || mixed_var === null
|| mixed_var === false || ( Array.isArray(mixed_var) && mixed_var.length === 0 ) );
}
jQuery(document).ready(function($) {
var attributes = new Map();
jQuery("#variation_id").bind("change", function() {
// console.log("ID: " + jQuery(this).val());
if($(".sku").text().length > 0) {
attributes.set('Артикул',$(".sku").text()+"");
}
if ($(".woocommerce-sleep_place-description").text().length > 0) {
attributes.set('Спальное место, мм',$(".woocommerce-sleep_place-description").text()+"");
}
if ($(".woocommerce-volume-description").text().length > 0) {
attributes.set('Объем, кб. м',$(".woocommerce-volume-description").text()+"");
}
if ($(".woocommerce-open_size-availability").text().length > 0) {
attributes.set('Габариты в разложенном виде, мм',$(".woocommerce-open_size-availability").text()+"");
}
if ($(".woocommerce-max_load-availability").text().length > 0) {
attributes.set('Максимальная нагрузка, кг',$(".woocommerce-max_load-availability").text()+"");
}
if ($(".woocommerce-carcas_material-availability").text().length > 0) {
attributes.set('Материалы каркаса',$(".woocommerce-carcas_material-availability").text()+"");
}
if ($(".woocommerce-prod_time-availability").text().length > 0) {
attributes.set('Сроки изготовления',$(".woocommerce-prod_time-availability").text()+"");
}
if ($(".woocommerce-garantee-availability").text().length > 0) {
attributes.set('Гарантия изготовителя',$(".woocommerce-garantee-availability").text()+"");
}
jQuery(".options-product tbody").empty();
var fields="";
if (attributes.size > 0) {
attributes.forEach(function(value, key) {
if(value.length > 0){
fields+='<tr>';
fields+='<th class="product-attributes-item__label">'+key+'</th>';
fields+='<td class="product-attributes-item__value">'+value+'</td>';
fields+='</tr>';
jQuery(".options-product tbody").append(fields);
fields = "";
}
});
}
});
});
</script>
<?}