Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi,
I tested your code and saw the bug. It relates with the unique ID attribute for the editors which is a technical challenge at the moment. I will keep trying and release a fix as soon as I find a solution.
Thanks
Anh Tran
KeymasterI haven't tried the templating option for select2, but ideally, you can pass any params to the
js_options. So just try it ๐Anh Tran
KeymasterThanks for reporting. Yoast's JavaScript code is always the trouble :(. The updated version 3.0 broke MB's JS once. I will check this and get back to you.
Anh Tran
KeymasterCan you post your code to test?
Thanks
AnhAnh Tran
KeymasterUnfortunately, it's not possible for now. That probably is a new UI tool for building tabs ๐
Anh Tran
KeymasterIt's a JS bug and I have a little difficulty with it. I will let you know when it's fixed.
Anh Tran
KeymasterJust figured out the bug and released a fix. Please update the extension.
Anh Tran
KeymasterHi @Flickweert,
I've just updated the MB User Meta plugin as well. Please redownload it.
Thanks
AnhAnh Tran
KeymasterHmm, it seems to work for me. Which version of the extension are you using?
Anh Tran
KeymasterRegarding the switching between text and visual tab, this is the behavior of WordPress. WP checks the user's favorite editing mode and saves that in the user meta. Next time the user comes back, he will see the previous mode enabled. In your case, I guess when you edit the post content in visual mode, WP saves this mode.
Besides, if you need to enter raw HTML, you can just use
textareafield. That avoids the switching issue like the editor.Anh Tran
KeymasterI'm still looking at them. Until now, I haven't seen any API that can be used by the Meta Box yet.
Anh Tran
KeymasterHi, if you're using a simple cloned text field, then it has only values. In this case, I think it's best to use these values as both the value and label in the options of the check box list.
You can use a snippet like this:
$settings = get_option( 'option_id' ); $values = isset( $settings['field_id'] ) ? $settings['field_id'] : array(); $options = array(); foreach ( $values as $value ) { $options[$value] = $value; } // In the field array( // Other options 'options' => $options, )Anh Tran
KeymasterYes, it works with WordPress 4.6. The new version introduces WP_Post_Type class and the new API for meta data. All of these things affects the low layer of code and doesn't affect the development layer where Meta Box is. All the public API that is used by the plugin isn't affected. So, everything is ok ๐
Anh Tran
KeymasterCan you update the Group extension to 1.1.3? I think I already fixed this.
Thanks
AnhAnh Tran
KeymasterThanks for reporting. Just figured out the bug and updated the Term Meta extension. Please update it.
Thanks
Anh -
AuthorPosts