top of page
Writer's pictureUniversal Web

COMO OCULTAR CAMPOS VACIOS DEL CMS

Updated: Sep 25

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();
    }
});
4 views0 comments

Comments


bottom of page