Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello there,
Please update the plugin Meta Box to the latest version 5.6.15 to fix this issue. Please check it here https://wordpress.org/plugins/meta-box/
Let me know how it goes.
January 16, 2023 at 11:16 PM in reply to: ℹ️Minlenght - How to edit/translate text : Please enter .... or more characters ? #40242Peter
ModeratorHello,
There is no option to edit this text. It is hard-coded in the select2 library file under the meta-box folder. I will inform the development team to consider supporting an option to change this text.
Peter
ModeratorHello Sam,
Thanks for your feedback.
Only some blocks that can be added text will have the color and background color option to select the palette. The custom block of Meta Box is a mix of all custom fields, so I think supporting the color palette as a native option is not a good way. However, I will inform the development team to explore the possibility.
Peter
ModeratorHello Sam,
It is not supported like a standard Gutenberg block. You can use the color palette settings of the color field in the block editor. Please read more here https://docs.metabox.io/fields/color/
Peter
ModeratorHello,
You can also consider increasing the PHP setting max_input_vars to avoid unexpected issues. Please read more here https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/
January 14, 2023 at 11:00 AM in reply to: ℹ️Error add_action( 'rwmb_*****_before_save_post' does not work #40232Peter
ModeratorHello,
Thanks for your feedback.
I also do not see it works on my demo site, please try to use the hook
rwmb_after_save_postand the WordPress function update_post_meta() to set/update a field value.Please read more on the documentation https://docs.metabox.io/actions/rwmb-after-save-post/
Peter
ModeratorHello Donna,
The map fields (Google map and OSM) save the location in the following format
latitude,longitude,zoom(you can also check it in the database). You can contact Formidable Forms to ask them which data is processed after submitting the form. Then you can use the function rwmb_set_meta() or update_post_meta() to set/update the field value with the correct format.Please read more on the documentation
https://docs.metabox.io/fields/map/#data
https://docs.metabox.io/functions/rwmb-set-meta/
https://developer.wordpress.org/reference/functions/update_post_meta/Peter
ModeratorHello Andreas,
Can you please share the page URL where I can make a test on your site or screenshots of the issue? And please export the field group to a Json file or generate PHP code so I can try to replicate the issue on my demo site.
Peter
ModeratorHello,
Support a customization code is beyond our scope of support, please read more here https://support.metabox.io/topic/support-policy/?swcfpc=1
You can request a customization service by submitting a ticket here https://metabox.io/contact/
I will forward it to our development team to take a look and give you a quote.Peter
ModeratorHello friends,
There is a plugin that supports importing/exporting cloneable fields and group fields of Meta Box. You can read more here https://www.smackcoders.com/documentation/wp-ultimate-csv-importer-pro/meta-box-custom-field-cloneable
Thanks.
January 14, 2023 at 10:23 AM in reply to: Multiple type file fields in cloneable groups not cloning properly #40227Peter
ModeratorHello,
Thanks for your feedback.
I've informed the development team to check this and continue to fix the issue. I will inform you when it's done.
Peter
ModeratorHello,
I do not see that issue on my demo site. The default value of the radio field should be a choice, not on/off. Can you please deactivate all plugins except Meta Box, MB extensions and switch to a standard theme of WordPress then check the issue again?
Please read more on the documentation https://docs.metabox.io/fields/radio/
January 12, 2023 at 11:18 PM in reply to: ✅Use jQuery 'additional-methods.js' to validate 'Image Upload' Filesize #40217Peter
ModeratorHello,
The validation in your code won't work because the rule
filesizeormax_file_sizeis not supported. Please read more on the documentation
https://docs.metabox.io/validation/#advanced-validation
https://jqueryvalidation.org/documentation/#link-list-of-built-in-validation-methodsIf you can create your own JS code to check the file size, you can implement a notice box like JS function alert() and prevent clicking the submit button.
Peter
ModeratorHello there,
To display a map from a settings page on the frontend, you need to add the setting
'object_type' => 'setting'to the second parameter and add the option name to the third parameter of the helper function. For example:$args = [ 'width' => '640px', 'height' => '480px', 'zoom' => 14, 'marker' => true, 'object_type' => 'setting' // here ]; rwmb_the_value( 'my_field_id', $args, 'settings_page_option_name' );Please read more on the documentation https://docs.metabox.io/extensions/mb-settings-page/#data
Peter
ModeratorHello there,
Can you please test this issue with another field group and let me know if the issue persists? If you have a backup of your site, please restore the site and export the field group to a JSON file and share it with me. I will import the field group to my demo site and test this issue there.
-
AuthorPosts