Older Versions

Support General Older Versions

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2319
    IchFloqueIchFloque
    Participant

    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

    #2324
    Anh TranAnh Tran
    Keymaster

    Hi, please update to 4.8.1. I've just fixed this problem today.

    Sorry for the bug!

    #2325
    Anh TranAnh Tran
    Keymaster

    PS: In case you want to use older version, please download them here https://wordpress.org/plugins/meta-box/developers/

    #2329
    IchFloqueIchFloque
    Participant

    Thanks for the link.
    FYI: 4.8.1 still didn't fix my problem...

    #2330
    Anh TranAnh Tran
    Keymaster

    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?

    #2336
    IchFloqueIchFloque
    Participant

    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;
    }
    
    #2340
    Anh TranAnh Tran
    Keymaster

    Ah, you're using the Group extension. Please update it to the latest version (1.0.5).

    #2343
    IchFloqueIchFloque
    Participant

    ah! thanks so much!

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Older Versions’ is closed to new replies.