Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 3,391 through 3,405 (of 3,708 total)
  • Author
    Posts
  • in reply to: Fields with same ID bug? #2431
    Anh TranAnh Tran
    Keymaster

    Hi,

    Currently, we have an internal caching mechanism, that will get all fields (by ID) and store in a static variable. This caching mechanism allows us to speed up the rwmb_meta function. Due to field ID is used as the key in the cache, field ID must be unique.

    However, as you said, there can be a situation that 2 post type can have a similar meta box where fields can have the same ID. Therefore, the helper function doesn't know which field it should get meta value for.

    I have just pushed a fixed for this on Github, please try and let me know if it works for you:

    https://github.com/rilwis/meta-box/commit/747375eb1d08176ace49c954de2b8d4a9d1d43d5

    Anh TranAnh Tran
    Keymaster

    FYI, WYSIWYG field now is cloneable. Please update to v4.8.3 and Group extension to 1.0.6.

    For more info, please check this blog post.

    in reply to: Call to undefined function when saving post/page #2422
    Anh TranAnh Tran
    Keymaster

    FYI, the version 4.8.3 was released. Please update to get rid of the bug.

    Anh TranAnh Tran
    Keymaster

    Oh, the media type is not a real type. It's an abstract type which will be extended by file_advanced or image_advanced. Please use file_advanced or image_advanced instead.

    in reply to: Plupload_image #2413
    Anh TranAnh Tran
    Keymaster

    Hi,

    We're working on plupload_image field to make it simpler just like file_advanced and image_advanced so it can work with group. Please wait.

    Anh TranAnh Tran
    Keymaster

    Hi, the js_options parameter is used for displaying only. To store multiple values of taxonomies, you should add 'multiple' => true to the field's param, as following (I also rewrite the parameters to match new version of Meta Box):

    array(
    	'id'   => 'event_category',
    	'type' => 'taxonomy',
    
    	'taxonomy'    => 'event-categories',
    	'field_type'  => 'select_advanced',
    
    	'query_args'  => array(),
    	'js_options'  => array( 'multiple' => true, ),
    	'multiple'    => true,
    	'placeholder' => 'Select ...',
    	'columns'     => '4',
    	'tab'         => 'general',
    ),
    in reply to: Call to undefined function when saving post/page #2411
    Anh TranAnh Tran
    Keymaster

    Hi, this bug was just fixed on Github. It will be released in v4.8.3 soon this week. If you need it urgent, please try the development version on Github.

    in reply to: MB Group not working after site move #2401
    Anh TranAnh Tran
    Keymaster

    Hi, please update the Group extension to the latest version 1.0.5. Version 1.0.5 fixed this bug.

    Anh TranAnh Tran
    Keymaster

    Update: I've just made a commit fafe882, which allows you to clone WYSIWYG fields. It hasn't worked for the group yet. It works as a standalone field only. I will keep working on that.

    Can you please help me to check it? It's in the clone-wysiwyg branch:

    https://github.com/rilwis/meta-box/tree/clone-wysiwyg

    in reply to: Purchased Bundle #2393
    Anh TranAnh Tran
    Keymaster

    Could you please send me the admin info so I can take a look and fix it if possible? Please send via the Contact form.

    Thanks

    in reply to: Purchased Bundle #2387
    Anh TranAnh Tran
    Keymaster

    Hi skynet,

    All extensions are supposed to add functionality to the plugin. And the functionality mostly does NOT have UI, except the Builder extension.

    All you see is the UI of the Builder extension where you can create meta boxes and fields visually, which is correct.

    Please take a look at the Documentation to use the extensions in the bundle.

    in reply to: Include by category parent #2382
    Anh TranAnh Tran
    Keymaster

    Hi,

    Thanks for your question. Currently, it's not supported. But that's a good idea. I will implement that in the next version.

    in reply to: Taxonomy not displaying since update to latest version #2381
    Anh TranAnh Tran
    Keymaster

    Hi, can you please update Group extension to the latest version to fix that?

    Also can you check if you register meta boxes for the admin area only, kind of:

    if ( is_admin() ) {
        add_filter( 'rwmb_meta_boxes', 'prefix_register_meta_boxes' );
    }

    The function to register meta boxes should be visible both on the admin area and frontend.

    in reply to: Errors in admin when creating new Meta Box #2369
    Anh TranAnh Tran
    Keymaster

    Glad to see it works for you now.

    in reply to: โœ…Tolltip doesn't work with the new Select_advanced #2361
    Anh TranAnh Tran
    Keymaster

    Thanks for post. I will check it. The 4.8.0 has updated Select2 library to the latest version and that might cause the bug.

Viewing 15 posts - 3,391 through 3,405 (of 3,708 total)