Support MB Frontend Submission Hide Metabox Field on Custom Frontend Form Reply To: Hide Metabox Field on Custom Frontend Form

#9514
Anh TranAnh Tran
Keymaster

I see. Can you try CSS approach, like this:

array(
    'name'  => 'Website Screenshot URL:',
    'desc'  => '',
    'id'    => $prefix . 'website_screenshot',
    'type'  => 'text',
    'class' => 'hidden',
),

And in the Customizer > CSS and add this:

.hidden { display: none; }