top of page

Hide Sections on Specific Dynamic Pages

Updated: Dec 30, 2024



Velo Code:


$w.onReady(function () {
    
    $w("#dynamicDataset").onReady(() => {
        let project = $w("#dynamicDataset").getCurrentItem();

        if(project.one===true){
            $w("#one").show();
            $w("#one").expand();
        } else {
            $w("#one").hide();
            $w("#one").collapse();
        }

        if(project.two===true){
            $w("#two").show();
            $w("#two").expand();
        } else {
            $w("#two").hide();
            $w("#two").collapse();
        }

        if(project.three===true){
            $w("#three").show();
            $w("#three").expand();
        } else {
            $w("#three").hide();
            $w("#three").collapse();
        }
    });
});

Enjoy!

1 Comment


COP
COP
Oct 13

Elevate your home with the latest sofa designs from Abhi and Oak. Looking for that perfect blend of luxury and practicality? Explore our stylish collection, featuring the sleek, modern appeal of a leatherette sofa set. Designed for comfort and built to last, these pieces are ideal for any contemporary living space. See all the new arrivals and find your statement furniture piece on our website today.

Like
bottom of page