Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi,
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_metafunction. 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
March 7, 2016 at 4:15 PM in reply to: โ Wysiwyg editor in clonable groups and nested clonable groups #2423Anh Tran
KeymasterFYI, 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.
Anh Tran
KeymasterFYI, the version 4.8.3 was released. Please update to get rid of the bug.
March 4, 2016 at 7:45 AM in reply to: Media Type Field not showing Images after Upgrade from Version 4.7.3 to 4.8.2 #2417Anh Tran
KeymasterOh, the
mediatype is not a real type. It's an abstract type which will be extended byfile_advancedorimage_advanced. Please usefile_advancedorimage_advancedinstead.Anh Tran
KeymasterHi,
We're working on
plupload_imagefield to make it simpler just likefile_advancedandimage_advancedso it can work with group. Please wait.March 3, 2016 at 3:48 PM in reply to: Taxonomy - select_advanced - multiple => true ---- Problems #2412Anh Tran
KeymasterHi, the
js_optionsparameter is used for displaying only. To store multiple values of taxonomies, you should add'multiple' => trueto 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', ),Anh Tran
KeymasterHi, 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.
Anh Tran
KeymasterHi, please update the Group extension to the latest version 1.0.5. Version 1.0.5 fixed this bug.
March 1, 2016 at 10:30 AM in reply to: โ Wysiwyg editor in clonable groups and nested clonable groups #2395Anh Tran
KeymasterUpdate: 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-wysiwygbranch:Anh Tran
KeymasterCould 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
Anh Tran
KeymasterHi 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.
Anh Tran
KeymasterHi,
Thanks for your question. Currently, it's not supported. But that's a good idea. I will implement that in the next version.
February 26, 2016 at 8:28 AM in reply to: Taxonomy not displaying since update to latest version #2381Anh Tran
KeymasterHi, 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.
Anh Tran
KeymasterGlad to see it works for you now.
February 23, 2016 at 11:52 AM in reply to: โ Tolltip doesn't work with the new Select_advanced #2361Anh Tran
KeymasterThanks for post. I will check it. The 4.8.0 has updated Select2 library to the latest version and that might cause the bug.
-
AuthorPosts