Older Versions
- This topic has 7 replies, 2 voices, and was last updated 9 years, 2 months ago by
IchFloque.
Viewing 8 posts - 1 through 8 (of 8 total)
-
AuthorPosts
-
February 18, 2016 at 6:39 PM #2319
IchFloque
ParticipantHi,
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
February 18, 2016 at 10:59 PM #2324Anh Tran
KeymasterHi, please update to 4.8.1. I've just fixed this problem today.
Sorry for the bug!
February 18, 2016 at 11:00 PM #2325Anh Tran
KeymasterPS: In case you want to use older version, please download them here https://wordpress.org/plugins/meta-box/developers/
February 19, 2016 at 6:55 AM #2329IchFloque
ParticipantThanks for the link.
FYI: 4.8.1 still didn't fix my problem...February 19, 2016 at 10:41 AM #2330Anh Tran
KeymasterCan you post the code you're using to register meta boxes? Are you using
rwmb_meta_boxes
filter or the old way usingadmin_init
?February 19, 2016 at 5:32 PM #2336IchFloque
Participantyes 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; }
February 19, 2016 at 7:51 PM #2340Anh Tran
KeymasterAh, you're using the Group extension. Please update it to the latest version (1.0.5).
February 20, 2016 at 12:04 AM #2343IchFloque
Participantah! thanks so much!
-
AuthorPosts
Viewing 8 posts - 1 through 8 (of 8 total)
- The topic ‘Older Versions’ is closed to new replies.