Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,376 through 3,390 (of 3,702 total)
  • Author
    Posts
  • in reply to: Problems with update #2493
    Anh TranAnh Tran
    Keymaster

    Hi all,

    I've just updated the Updater extension which solves the problem. Please update it.

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

    Hi again,

    I think I found the problem and fixed it here. The fix is available on Github. Can you please test it?

    in reply to: Tabs #2464
    Anh TranAnh Tran
    Keymaster

    I understand. The problem that made me choose meta box for settings page is keeping the consistency in the code as they share the same API for meta boxes. This is also applied in some famous frameworks such as Genesis or Hybrid Theme.

    Anyway, I will think more about using tabs/sections as another option (later). WordPress uses tabs/sections for its settings page, while using meta boxes for edit pages. This inconsistency of WordPress itself makes developers like us harder to make a good decision. Also the API WordPress offers for them are totally different which make things more inconsistent.

    in reply to: Validation does not work with tabs #2463
    Anh TranAnh Tran
    Keymaster

    Can you post the code?

    in reply to: Problems with update #2462
    Anh TranAnh Tran
    Keymaster

    I see. I will check the updater plugin and the updating system. There might be an issue in the first check.

    in reply to: Problems with update #2446
    Anh TranAnh Tran
    Keymaster

    I couldn't read the error when updating. Can you tell me which one? Also, it works when you refresh the browser, doesn't it?

    in reply to: Full-height WYSIWYG #2445
    Anh TranAnh Tran
    Keymaster

    Hi, I've just added this to Github [issue](https://github.com/rilwis/meta-box/issues/803) to keep tracking the development. We will work on this later. Please be patient.

    in reply to: Fields with same ID bug? #2444
    Anh TranAnh Tran
    Keymaster

    Can you post the code to register meta boxes? I want to test that.

    Thanks

    in reply to: Full-height WYSIWYG #2432
    Anh TranAnh Tran
    Keymaster

    Hi Rik,

    I think it's a good feature. However, do you think it will confuse user if they enable it for both default WP editor and WYSIWYG, or 2 WYSIWYG fields?

    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',
    ),
Viewing 15 posts - 3,376 through 3,390 (of 3,702 total)