Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I'm not using Bedrock, just the standard WordPress installation with 2021 theme and I don't see that issue with WP 6.7.1.
Can you try with a simplified environment and recheck the issue?January 9, 2025 at 8:28 PM in reply to: MB jQuery Validation - Scroll To Highlight Error - file_upload - Issue #47352Peter
ModeratorHello,
Thanks for the feedback. I can reproduce the issue from scratch. I've escalated this issue to the development team to fix the jQuery validation and improve the behavior to scroll to the error message.
January 9, 2025 at 8:06 PM in reply to: Unintended auto-update crashes custom fields and causes fatal error #47350Peter
ModeratorHello,
>> Only for Metabox related extension plugins, if I set “auto-update enabled”, I can't change the setting in the plugin list.
Can you please let me know which extension plugin you set auto-update enabled? And share some screenshots or screen record of the issue on your site.
January 8, 2025 at 11:10 PM in reply to: MB jQuery Validation - Scroll To Highlight Error - file_upload - Issue #47345Peter
ModeratorHere is the "Required" field setting https://imgur.com/INH8uRy
it is available for all fields. And I see that it is scrolling to the error message when submitting the post.Peter
ModeratorHello Yumiko,
The column setting is available in the builder, see this screenshot https://imgur.com/0NxOW8U
If not, please let me know the MB Builder plugin version and MB extension plugins activated on your site. I will help you check the issue.
Peter
ModeratorHello,
It looks like the subfield value has been saved to the database and the first clone entry is displayed. You can try to access the database, table wp_postmeta and doublecheck this.
If there is a field value of the field group, delete them all and recheck the clone entry.Peter
ModeratorHello,
>> Can you provide use cases why someone would use taxonomy_advanced over taxonomy?
In some cases, you have to use the
taxonomy_advancedfield: subfield in a group or field in a block. Because thetaxonomyset post terms so it won't work in those cases.Besides that, when you want to save the field value as post meta instead of post term, you will use the field
taxonomy_advanced.You can read this article as a reference https://metabox.io/custom-fields-vs-custom-taxonomies/
Peter
ModeratorHello,
Sorry, I've not received the admin account in the ticket system. Can you please share it again?
Thank you.
January 8, 2025 at 10:12 PM in reply to: ✅How to order multiple custom field groups on settings page #47339Peter
ModeratorHello,
Thank you for your feedback.
There isn't an option to order field groups on the settings page. You can create tabs on the settings page and assign the field group to tabs to order them.
January 8, 2025 at 9:51 PM in reply to: MB jQuery Validation - Scroll To Highlight Error - file_upload - Issue #47337Peter
ModeratorHello,
Thank you for your feedback.
I also see the required jQuery validation doesn't work with the file_upload field. However, you can use the required field setting as an alternative way to make the field mandatory.
January 8, 2025 at 8:54 PM in reply to: ✅Custom Post Types and Fields not Saving - Just Hangs #47335Peter
ModeratorHello,
This issue has been escalated to the development team. I will get back to you when I have more information.
Thank you.
January 7, 2025 at 11:12 PM in reply to: "Anchor" checkbox/switch missing for Block settings? #47328Peter
ModeratorHello Doug,
Thank you for your feedback.
It looks like the Anchor feature is missing from the builder (UI). I'm discussing this issue with the development team and I will get back to you when I have more information.
Peter
ModeratorHello,
The difference between taxonomy and taxonomy_advanced fields is noted in the documentation
https://docs.metabox.io/fields/taxonomy-advanced/- taxonomy: set the post terms, data is stored in the table wp_terms
- taxonomy_advanced: set the post meta, data is stored in the table wp_postmeta, like other custom fieldsyou can also follow this article https://metabox.io/custom-fields-vs-custom-taxonomies/
to know when using a custom field or custom taxonomy.Peter
ModeratorHello,
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 to sort or filter (FacetWP).
Peter
ModeratorHello,
I fix the issue by using the helper function rwmb_meta() to get the user meta by ID
{% set user_id = mb.get_current_user_id() %} <p><strong> Adresse : </strong>{{ mb.rwmb_meta( 'adresse', {object_type: 'user'}, user_id ) }}</p>This happens because you use the shortcode on the Blocksy template and other users are not the author of the template so it won't display the meta value.
Following the documentation
https://docs.metabox.io/extensions/mb-user-meta/#getting-field-value
https://docs.metabox.io/functions/rwmb-meta/ -
AuthorPosts