年末年始の発送についてのお知らせ
2024年12月28日(土)~2025年1月5日(日)は商品の発送を休止させていただきます。何卒ご理解賜りますようお願い申し上げます。
また上記期間以前のご注文(12月中旬~下旬注文)についても、物流の状況により2025年1月6日(月)から順次発送となる場合がございます。
ご不便をおかけし、誠に申し訳ございませんが、予めご理解・ご了承の程、何卒よろしくお願い申し上げます。
${ item.name }
${ item.catch_copy }
`
);
}
});
} else {
$('.popularFeatureContent').css('display','none');
}
}).fail(function(jqXHR, statusText, errorThrown) {
console.log('error');
$('.popularFeatureContent').css('display','none');
});
}
// 新着特集が存在するか
if ( $('#valid_new_feature').length <= 0 ) {
$('.popularFeatureContent').addClass('is_active');
$('.ec-eyecatchContent__wrapItem').addClass('is_show');
}
});
function newFeatureGA(id) {
setTimeout(function() {
gtag("event","new_feature",{
id:id,
location:location.pathname
});
},1)
}
function popFeatureGA(id) {
setTimeout(function() {
gtag("event","pop_feature",{
id:id,
location:location.pathname
});
},1)
}
${p.name}
${p.stock_text}
${p.original_price}
(税込)
${p.item_price}
(税込)
`);
if (p.is_vv_only) {
$html.find('.photo').addClass('vv_only');
}
if (!p.original_price) {
$html.find('.original_price').remove();
}
if (p.is_sale) {
$html.find('.item_price').addClass('sale');
}
if (p.is_favorite) {
$html.find(`.btn-favorite`).data('class', 'favorite_delete')
$html.find('.photo_favorite i').removeClass('far').addClass('fas');
}
htmls.push($html);
}
$(`.${key}-items-area`).empty().append(htmls);
$(`.${key}ItemsMainArea`).show();
$(`.top_newItemArea`).show();
/*
if (key == 'restock') {
setTimeout(() => {
if ($('.newItemsMainArea:visible').length == 0) {
$('.ec-newItemtab__wrapTab.restockItemsMainArea').click()
}
}, 100);
}
*/
loadingLazy();
newItemListGA(json);
}).fail(function (jqXHR, statusText, errorThrown) {
console.error(jqXHR);
});
}
appendNewOrRestockItems('https://vvstore.jp/block/get_new_items', 'new', true);
appendNewOrRestockItems('https://vvstore.jp/block/get_restock_items', 'restock', true);
});
function newItemListGA(json) {
items = [];
$.each(json, function(index, item){
items.push({
item_name:item.name,
item_id:item.id
})
});
setTimeout(function() {
gtag("event","view_item_list",{
items:items,
});
},1)
}
function fromNewItemGA(src,id) {
var event = "from_restock_item"
// リンクの親元のdivのclassで新着か再入荷か判定
if($(src).closest(".newItemsMainArea").length) {
event = "from_new_item";
}
setTimeout(function() {
gtag("event",event,{
id:id,
location:location.pathname
});
},1)
}