Custom Fields
Re-Envisioned › Support › General › Password Protection and metaboxes › Reply To: Password Protection and metaboxes
December 12, 2018 at 4:49 PM #12614
Hi Ale,
This depends on how you display custom fields’ values in the front end. You need to change your code to check the post status, like this:
if ( post_password_required() ) {
echo 'Nothing here';
} else {
echo rwmb_meta( 'field_id' );
}