Support Forum
Hi,
the new version 4.8.0 of MetaBox doesn't show any content in the front-end any more. can you send me the previous version? Thanks
Hi, please update to 4.8.1. I've just fixed this problem today.
Sorry for the bug!
PS: In case you want to use older version, please download them here https://wordpress.org/plugins/meta-box/developers/
Thanks for the link.
FYI: 4.8.1 still didn't fix my problem...
Can you post the code you're using to register meta boxes? Are you using rwmb_meta_boxes
filter or the old way using admin_init
?
yes sure:
// register meta poxes for attend page in backend
add_filter( 'rwmb_meta_boxes', 'box_register_meta_boxes' );
function box_register_meta_boxes( $meta_boxes )
{
$prefix = 'box_';
// meta box
$meta_boxes[] = array(
'id' => 'boxes',
'title' => 'Preview Boxes',
'pages' => array( 'page' ),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'name' => 'Featured Box',
'desc' => 'Full width featured boxes for content',
'id' => $prefix . 'group_big',
'type' => 'group',
'clone' => true,
// List of child fields
'fields' => array(
array(
'name' => 'Date',
'id' => 'date',
'type' => 'text',
),
array(
'name' => 'Featured Text',
'id' => 'text',
'type' => 'text',
),
array(
'name' => 'Image-URL (1.035x605)',
'id' => 'url',
'type' => 'url',
),
array(
'name' => 'Title',
'id' => 'title',
'type' => 'text',
),
array(
'name' => 'Subtitle',
'id' => 'subtitle',
'type' => 'text',
),
array(
'name' => 'Facebook Event URL',
'id' => 'facebook',
'type' => 'url',
),
array(
'name' => 'Link-URL incl. http://',
'id' => 'link',
'type' => 'url',
),
array(
'name' => 'FB + Link active?',
'id' => 'linked',
'type' => 'checkbox',
),
array(
'name' => 'Price (only Google KG events)',
'id' => 'price',
'type' => 'text',
),
),
),
array(
'name' => 'Preview Box',
'desc' => 'Fixed preview boxes for content',
'id' => $prefix . 'group',
'type' => 'group',
'clone' => true,
// List of child fields
'fields' => array(
array(
'name' => 'Date',
'id' => 'date',
'type' => 'text',
),
array(
'name' => 'Image-URL (350x180)',
'id' => 'url',
'type' => 'url',
),
array(
'name' => 'Title',
'id' => 'title',
'type' => 'text',
),
array(
'name' => 'Subtitle',
'id' => 'subtitle',
'type' => 'text',
),
array(
'name' => 'Link-URL incl. http://',
'id' => 'link',
'type' => 'text',
),
array(
'name' => 'Open link in new tab',
'id' => 'target',
'type' => 'checkbox',
),
),
),
)
);
return $meta_boxes;
}
Ah, you're using the Group extension. Please update it to the latest version (1.0.5).
ah! thanks so much!