Meta Box
Support Forum
Support › MB Custom Post Type › Hide field from user groupResolved
Hi is it possible to hide a field from specific user group on the frontend, with builder / shortcodes?
Hi,
It is impossible but when outputting the field value, you can check the user role before with simple code
if( check_user_role() ) { echo rwmb_meta('field_id'); }
please following this guide to know the function to check user role.