Reply To: Hide Metabox Field on Custom Frontend Form
Support › MB Frontend Submission › Hide Metabox Field on Custom Frontend Form › Reply To: Hide Metabox Field on Custom Frontend Form
May 12, 2018 at 8:37 AM
#9514
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; }