Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Please update Meta Box plugins to the latest versions to select View template in the Block Render Settings section, see this screenshot https://imgur.com/MsyAbOv
If you can use the PHP code to set the View template, you don't need to use a callback function to create output for the custom block. The View template works as the callback function, you can create the output with the View template properly.
Peter
ModeratorHello Julia,
Thanks for reaching out.
It is possible to move a field under a
groupfield. You need to add at least one subfield to thegroupfield then you can drag and drop a top field under thegroup. Please check this screen record https://imgur.com/18SD1XJAnd please note that, the field value won't be displayed when you edit the post because the
groupfield has a different data type stored in the database. Following the documentation
https://docs.metabox.io/extensions/meta-box-group/#getting-sub-field-valuesMay 3, 2025 at 4:29 PM in reply to: Tabs won't work after changing tab style in a field group settings #48182Peter
ModeratorHello Nathan,
The issue with tabs when using the builder has been fixed in Meta Box AIO version 2.1.1. If it doesn't work on your site, can you please share a screen record of the issue?
Peter
ModeratorHello,
You can replace the meta box setting
'settings_pages' => ['homepage-masthead-text'],to
'panel' => '',to show the top-level section in the customizer$meta_boxes[] = [ 'title' => __( 'Homepage Intro Text', 'wcpp' ), 'id' => 'homepage-masthead-wysiwyg', 'panel' => '', ... ]Please follow the documentation https://docs.metabox.io/extensions/mb-settings-page/#top-level-sections
Regarding the blocks, if you want to use the Meta Box custom fields with blocks, you need to create/register a custom block to use it. There isn't an option to use the custom fields with standard WordPress blocks.
Peter
ModeratorHello,
Thanks for reaching out.
Currently, we only support working with the custom model by code. If you want to create a custom model and fields, you have to use the code to register them. You can put the code in the file functions.php in your custom plugin or theme.
If you are not familiar with coding, we offer a customization service. Please contact us here https://metabox.io/contact/ for more details.Peter
ModeratorHello,
Thanks for reaching out.
Please notice that, all fields registered with custom models are saved to the custom table as custom fields and they don't work like Taxonomy of WordPress.
If you want to output the custom model data in the frontend and use the filter, you need to create some custom code to do so. Please refer to the documentation https://docs.metabox.io/extensions/mb-custom-table/#getting-field-values-for-modelsPeter
ModeratorHello,
I don't see that issue on my demo site. I also created a testing site if you want to check the issue. Below is the site credentials:
URL: https://lovely-meerkat-cd0088.instawp.xyz
Username: mehuxecoju5327
Password: q0sS5FZCfVLwjMyU9E6eAnother way, you can click on the up/down arrow in the meta box on the editing page to move the meta box to the sidebar or back to under the content. Please check this screen record https://imgur.com/385Fued
Peter
ModeratorHello Gregory,
Thanks for reaching out. Can you please try to deactivate all plugins except Meta Box plugins, switch to a WordPress theme and recheck the issue?
If it still doesn't work, please export the field group to a JSON file and share it here. I will import the field group to my demo site and investigate the issue.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello,
Yes, it is possible. But you need to create more custom code JS, CSS to make the gallery zoomable. Then add the Views shortcode to the Divi builder and display it in the frontend.
Peter
ModeratorHello Tanja,
Are you using WP Gridbuilder to output the map field value? If you use the code to output the field value, does the issue happen? Please share a screen record of steps you take on your site so I can understand the issue fully.
Thank you.
Peter
ModeratorHello,
As you can see that, it is a WordPress issue, not an issue of Meta Box itself. You can follow this topic https://wordpress.stackexchange.com/questions/481/can-i-use-a-number-for-a-post-page-slug
there are some workarounds to fix the issue: use a third-party plugin, or use another permalink setting: Day and name or Numeric.April 25, 2025 at 10:59 PM in reply to: ℹ️Frontend Form Not Rendering via Meta Box View — Shortcode Shows as Plain Text #48166Peter
ModeratorHello Lisa,
Thanks for reaching out.
The
frontend_formis not a function to use in MB Views to display the form. You can just add the frontend form shortcode to the page content to display the frontend form on the frontend. Here is an example:[mb_frontend_form post_fields="title,content"]Please follow the documentation https://docs.metabox.io/extensions/mb-frontend-submission/
https://docs.metabox.io/extensions/mb-views/#running-php-functionsPeter
ModeratorHello Michael,
Please update Meta Box AIO to version 2.1.1 to fix the issue with Tabs when using the builder.
Thank you.
Peter
ModeratorHello Simon,
I can see the issue. Let me escalate it to the development team and I will get back to you when I have more information.
Peter
ModeratorHello,
Thank you for the feedback. I can reproduce the issue on my demo site.
It has been escalated to the development team to fix the issue with tabs when using custom blocks. I will let you know when it's done. -
AuthorPosts