V této sérii článků sdílím užitečné tipy, návody a zkušenosti, jak lze rychle a jednoduše vylepšit váš eshop.
function productCardEdit(){
if ($(".product").length){
$(".product .p-bottom > div[data-micro-availability='https://schema.org/OutOfStock']").each(function(){
let productUrl = $(this).parents(".product").find(".image").attr("href").slice(0, -1);
$(this).parents(".product").find(".pr-action").attr("id","product-detail-form");
$(this).parents(".product").find(".image").prepend('<a href="'+ productUrl +':hlidat-cenu/" class="link-icon watchdog btn" title="Hlídat cenu" rel="nofollow">Hlídat</a>');
});
$(".p-tools .watchdog").click(function(){
$(".product .pr-action").attr("id","");
$(this).parents(".product").find(".pr-action").attr("id","product-detail-form");
});
}
}
productCardEdit();
document.addEventListener('ShoptetDOMPageContentLoaded', function () {
productCardEdit();
});
document.addEventListener('ShoptetDOMPageMoreProductsLoaded', function () {
productCardEdit();
});