Forum Replies Created
-
AuthorPosts
-
January 8, 2025 at 8:54 PM in reply to: ✅Custom Post Types and Fields not Saving - Just Hangs #47335
Peter
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.Peter
ModeratorHello,
I can reproduce the issue on my demo site. Currently, the re-order posts feature isn't working with the hierarchical CPT. If you want to use this feature, please disable the hierarchical option and check the issue again.
Thanks.
January 2, 2025 at 11:24 PM in reply to: Select Choices Callback Function Executed on Front End #47290Peter
ModeratorHello Jacob,
Let me check this issue with the development team and I will get back to you when I have more information.
Thank you.
Peter
ModeratorHello Topher,
You should add one Toggle rule condition per field group. If you want to add more value to the condition, please add it to the same row. Please check this screenshot https://imgur.com/B2r7k2c
You can also click on the "Get PHP code" button to check the code and see how it works. -
AuthorPosts