Forum Replies Created
-
AuthorPosts
-
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/Peter
ModeratorHello,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello Simon,
WordPress itself doesn't support showing 2 levels of sub-menu page. You should show CPT 1 as the top menu to show Taxonomy 1 as a submenu.
Here is a related topic in the WordPress support forum https://wordpress.org/support/topic/multiple-submenus/Peter
ModeratorHello,
Meta Box doesn't support creating an archive page for the taxonomy or removing the taxonomy slug from the term URL.
You can follow the WordPress template documentation to create the archive page for the taxonomy
https://developer.wordpress.org/themes/basics/template-hierarchy/#custom-taxonomiesor follow the topic below to create some custom code to remove the taxonomy slug from term URL
https://stackoverflow.com/questions/41834377/remove-custom-taxonomy-base-slug-from-archive-permalinkPeter
ModeratorHello Tom,
I set both max and min number of clones for the group field and the feature
clone_empty_startstill works properly.As the next step of troubleshooting, please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello,
Yes, you can use the author archive page to show the user meta in the frontend. If the user meta is only displayed on the admin author page, can you please recheck if other users have the value for custom fields (user meta)?
Peter
ModeratorHello Nick,
If you enable the field setting
clone_empty_start, there is no group of fields on initial. When you click on the button "+ Add product", it will show the first group of fields.If it doesn't work on your site, this feature could be affected by a third-party plugin or a block of code in the theme. If so, can you please share the page URL where I can see the issue?
January 3, 2025 at 9:47 PM in reply to: ✅unserialize(): Error - When using custom admin column #47302Peter
ModeratorHello,
Can you please move the class
Pl_Custom_Admin_Columnsto a separate file and include it in the callback functionpl_add_custom_columnsas noted in the documentation?
https://docs.metabox.io/extensions/mb-admin-columns/#custom-admin-columnsI follow the documentation, use your code to show a custom admin column for the field
_thumbnail_idbut don't see that issue. Please recheck this and let me know how it goes. -
AuthorPosts