Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Bertus,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a closer look.Peter
ModeratorHello Tanja,
If you use the cloneable date field in a cloneable group, the data is saved to the database in a serialized format (array). So if you want to query posts by date field, you can follow the tutorial in your post, use the single cloneable field and enable the setting
Clone as multipleto get a single value per row in the database.Also, please note that, in case of using Bricks Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/Peter
ModeratorHello Simon,
You can simply add a Text or Heading widget and select data from Meta Box field
postto display the title and link to the post. However, it doesn't support getting other post data like featured image, excerpt ...Peter
ModeratorHello,
Thanks for following up. Our development team has spent time investigating the issue, and it looks like a limitation of WordPress and the custom block. We are still trying to find a way to make the preview of custom blocks work in the editor.
I will let you know when it's done.May 8, 2025 at 11:22 PM in reply to: ✅How to create a View to show an Open Street Map containing all markers #48209Peter
ModeratorHello Jon,
If you are using MB Views to output the map field, you should add another attribute to the data items and assign it to the post URL (permalink). Then add the URL to the popup in the JavaScript code. Below is an example:
{% set restaurantsArray = restaurantsArray|merge( [ { 'longitude': 'latitude': 'address': 'title': 'icon': 'url': post.url } ] ) %}marker.bindPopup( '<b>' + location_on_map.title + '</b><br>' + location_on_map.address + '<br><a href="' + location_on_map.url + '">Go to Page</a>' ).openPopup();Note: supporting more customization code is beyond our scope of support. If you are not able to complete the task, we offer a customization service for an extra fee. Please contact us here https://metabox.io/contact/ for more details.
Peter
ModeratorHello Graham,
Thanks for reaching out.
First thing, please update Meta Box AIO to the new version 2.2.0 and recheck the issue. If it still doesn't work, please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.
Peter
ModeratorHello Aryan,
Do you see any fatal error in the WP debug log or JavaScript error in the Console tab of the browser devtool? If so, please share the error message with me.
https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
https://developer.chrome.com/docs/devtools/openAlso, you can export the field group to a JSON file and share it here. I will import it to my demo site and check the issue. Following the documentation
https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello Simon,
Yes, when creating the
postfield, you can set the post type to show the posts from a specific CPT in the list. It is noted in the documentation https://docs.metabox.io/fields/post/#settingsPeter
ModeratorHello Simon,
Thanks for reaching out.
If you use the single field
post, not a subfield in agroupfield, you can use the Text widget to output the field value the frontend with a simple format/style.If you use the
groupfield, you can create the skin to display subfield values in a template. I think point 1 would be better.Regarding the Group Skin, I see you do not select the Group Skin to use the skin on the template, see this screenshot https://imgur.com/zRHIUQH
can you please recheck this?May 6, 2025 at 10:42 PM in reply to: How to bind to the uploader to pass custom parameters to FormData #48191Peter
ModeratorHello,
Sorry for the delayed response. Please share your details and link to the repo by submitting this contact form https://metabox.io/contact/
I will forward it to the development team to take a look.Thank you.
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. -
AuthorPosts