Forum Replies Created
-
AuthorPosts
-
July 4, 2023 at 10:10 PM in reply to: Toolset Migration successful but Metabox plugin causing the site to break #42470
Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will help you to check the issue.July 4, 2023 at 10:06 PM in reply to: Same value for a specific custom field of all posts of a CPT #42469Peter
ModeratorHello,
If you have the same field value for all posts, you can consider using a settings page. Then change the field value in one place for all posts.
Peter
ModeratorHello,
What happens if you click on Publish? If the field group is still in Draft mode, you can try to deactivate all plugins and leave only Meta Box, MB AIO activate, switch to another theme.
If it still does not work, please export the field group to a JSON file and share it here. I will check this issue on my demo site.
Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorHello,
Yes, please use the custom code to hide the tab.
Peter
ModeratorHello,
No, currently it's not possible. Opening the frontend form in a modal will get a lot of JS errors.
Peter
ModeratorHello,
You can use the operator != (not equal) and leave an empty value to show a field if the target field has a value. Screenshot https://imgur.com/ax8gEH3
Peter
ModeratorAfter importing the
salaryCPT and creating a new post, add the shortcode favorite to the post content, I don't see that issue. The button displays properly in the frontend. Screenshot https://imgur.com/mZ437yNPeter
ModeratorHello,
If you want to hide tabs with conditional logic, please follow this documentation to use a custom code
https://docs.metabox.io/hide-tabs-with-conditional-logic/Peter
ModeratorHello,
Currently, the "Add new" button is designed to display outside of the select box. There is no hook to move it to the select box.
July 3, 2023 at 6:13 PM in reply to: Bug Report WYSIWYG Field: strange behaviour & content not visible #42450Peter
ModeratorHello,
Thanks for your feedback. There is an issue with the WYSIWYG field in a tab and the development team has been aware of this issue. It will be fixed in the next update as soon as possible.
Peter
ModeratorHello,
Please export the CPT on your site and share the JSON file here. I will check the issue on my demo site.
Peter
ModeratorHello,
The text "Please enter a multiple of ..." is hard-coded in the JS file so currently, there is no way to translate this text using Loco Translate. If you are using the validation, you can set a custom error message for this validation. Please read more in the documentation https://docs.metabox.io/validation/
July 2, 2023 at 11:45 AM in reply to: ✅How to dynamically populate a new post custom field from url? #42441Peter
ModeratorHello Phill,
You can use the filter hook
rwmb_{$field_id}_field_metato pre-populate value of the field from the URL. For example:add_filter( 'rwmb_tramp_name_field_meta', function ( $value, $field, $saved ) { $value = isset( $_GET['tramp_name'] ) ? $_GET['tramp_name'] : $value; return $value; }, 10, 3);Read more about the filter in the documentation https://docs.metabox.io/filters/rwmb-field-meta/
Peter
ModeratorHello,
You can upload the JSON file to Google Drive or Dropbox and share the link here. But if the issue does not happen with the repaired field group, no need to share it. I think it happens because you've clicked the Update button when editing the field group twice: first click Update, then the fields are not displayed and click Update again >> all of the fields are gone.
And currently, there is no way to recover the fields. You will need to re-create them manually.Peter
ModeratorHello,
Can you please share a screen record of this issue? And export the field group to a JSON file, I will test it on my demo site. Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
-
AuthorPosts