Hola, de nuevo! Acá les dejo un tutorial para OCULTAR CAMPOS que están vacíos en el CMS. El código es muy sencillo, espero les sirva, saludos!
NOTA: Recuerden colapsar los elementos para que les funcione el código
CODE REPEATER
$w.onReady(function () {
$w("#repeater1").onItemReady(($item, itemData,index)=>{
if(itemData.link){
$item("#btnLink").expand();
}
})
});
CODE DYNAMIC PAGES
$w.onReady(function () {
const current = $w("#dynamicDataset").getCurrentItem();
if (current.link) {
$w("#btnLink").expand();
}
});
Comments