Forum Replies Created
-
AuthorPosts
-
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
Peter
ModeratorYes, that's it.
Peter
ModeratorHello,
As a real person, I don't know how bots do. Can you please share some entries in the database that indicates the field "zustimmung" is empty?
You can try to use the Google reCaptcha (v3) to prevent this issue, please read more in the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#adding-the-submission-form
Peter
ModeratorHello,
The theme code does not work if you add it to the template file of the theme. If you want to render the custom block content, please follow the documentation https://docs.metabox.io/extensions/mb-blocks/#render_callback
I will inform our development team to remove the theme code section if the users use custom block.
June 29, 2023 at 9:45 PM in reply to: ✅Does MB Front End submission work with User Posts Limit #42427Peter
ModeratorHello,
In the page template, you can use the code in the topic above to check the number of posts belonging to a user then output the frontend form shortcode. For example:
if( check_the_number_of_posts_here ) { echo do_shortcode( '[mb_frontend_form id="field-group-id" post_fields="title,content"]' ); }If you are not able to complete the task, please contact us here https://metabox.io/contact/
Our development team will help you with an extra fee.Peter
ModeratorHello Joe,
Yes, correct. The group is used for storing data (sub-fields value) not for querying by sub-fields (sort or filter) value because the value of the group saved in the database is a serialized array.
See more at https://metabox.io/create-group-of-custom-fields-with-meta-box-group/#how-does-the-meta-box-group-save-data.You should use the top field for sorting or filtering (FacetWP).
Peter
ModeratorHello,
Can you please export the field group to a JSON file and share it here? I will check the settings of the date field on your site. Read more in the documentation https://docs.metabox.io/extensions/meta-box-builder/#json-notation
-
AuthorPosts