Comment to 'Pulling and displaying data from bx_persons_data in its own block.'
  • For reference, this is what I ended up using, but it also blocks similar field types, so should I add another field type the same as the one I want to display on the specific page, that field will not be hidable.

    <style>
    .character_lore .bx-form-row-view-caption {
        display: none !important;
    }
    
    
    .bx-form-row-vc-texte:nth-child(4) {
        display: none !important;
    }
    
    
    .bx-form-row-view-wrapper-datepicker .bx-form-row-view-value {
        display: none !important;
    }
    
    
    .bx-form-row-view-wrapper-text .bx-form-row-view-value {
        display: none !important;
    }
    
    
    .bx-form-row-view-wrapper-select .bx-form-row-view-value {
        display: none !important;
    }
    
    
    .bx-form-row-view-wrapper-datetime .bx-form-row-view-value {
        display: none !important;
    }
    </style>