Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Tanja,
I don't see any issues through your screen record. Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.July 10, 2025 at 9:39 PM in reply to: ℹ️Bug: Admin Columns not working properly with MB Builder RC1 #48554Peter
ModeratorHello Simon,
Thanks for reaching out and for your feedback.
I can reproduce the issue on my demo site when using builder RC1. I've escalated this issue to the development team to fix it in the next update of builder plugin.
Peter
ModeratorHello Tanja,
Thanks for reaching out.
Can you please share a screen record of the issue on your end? Specifically, the tab Settings of the field group.
I will help you investigate the issue.
July 8, 2025 at 10:35 PM in reply to: rwmb_frontend_validate for cloneable groups issue with set_post_data #48549Peter
ModeratorHello Nick,
>> I assume the cleanup operation for the forms cloneable groups is not removed
Yes, the cleanup process will be executed when saving the field value. If you set the post data when using the filter hook, you can check if a field value is not empty before setting the post data.
I will also inform the development team to recheck this case and see if we can improve this in future updates.
Thank you.
Peter
ModeratorHello Nick,
Thanks for reaching out.
I can reproduce the #1 issue. This happens when you don't add any value to the field group and submit the form. You can try to add at least a field value or remove the setting
clone_empty_startto fix this issue.I cannot reproduce #2 issue because the object ID 0 is not available in the database. The column ID is incremental and starts from 1. Do you use any custom code to adjust the form?
Peter
ModeratorHello Joshua,
Thanks for reaching out.
I'm afraid that there isn't a way to move the relationship meta box to a field group as a custom field. I will inform the development team to explore the possibility.
July 7, 2025 at 9:41 PM in reply to: Getting Items for a MB View via RestAPI (e.g. from Amelia Events)? #48542Peter
ModeratorHello Oliver,
If Amelia supports getting events via Rest API, you can create a custom PHP function to get the events and return the expected data.
Then in the View editor, you can call the custom function viamb.proxy to get the data and output in the frontend. Refer to this documentation https://docs.metabox.io/extensions/mb-views/#running-php-functionsPeter
ModeratorHello,
The issue
max_allowed_packetmeans that you're trying to send (usually via a query or form submission) a packet of data larger than the MySQL server is configured to accept. You can contact your hosting support and ask them to check themax_allowed_packetvalue of your database. If it is too low (less than 64MB), please increase this value.If it doesn't help, please try to create a full backup of your site and databases. Then access the database, table wp_options, delete the option name
mbfs_keysand recheck the issue.Peter
ModeratorHello Thomas,
Thanks for reaching out.
Please contact us here for the issue with Affiliate program https://metabox.io/contact/
we will get in touch with you as soon as possible.July 4, 2025 at 8:17 AM in reply to: Order_by last name in custom table using query loop in Bricks Builder #48535Peter
ModeratorHello,
Not related to Bricks but if you use the code to create the custom query and order posts by meta value, please try this one
$args = [ 'post_type' => 'your_post_type', // e.g., 'post', 'page', or custom post type 'posts_per_page' => -1, 'meta_key' => 'title', // your custom field key 'orderby' => 'meta_value', // or 'meta_value_num' for numeric values 'order' => 'ASC', // or 'DESC' ]; $query = new WP_Query( $args );Refer to the WordPress documentation https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters
Let me know how it goes.
Peter
ModeratorHello Amber,
Thanks for reaching out.
Currently, there isn't a field type Star Rating. But you can follow the documentation below to use the radio field and some custom code to make it work like the rating field
https://docs.metabox.io/tutorials/add-star-rating-fields/July 3, 2025 at 9:00 PM in reply to: Order_by last name in custom table using query loop in Bricks Builder #48531Peter
ModeratorHello,
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/Thank you.
Peter
ModeratorHello,
We've released a new feature to re-order hierarchical posts. Please use the single plugin MB Custom Post Type to get it https://wordpress.org/plugins/mb-custom-post-type/
It will be added to the Meta Box AIO in future updates.Let me know how it goes.
Peter
ModeratorHello,
I suggest you create a custom plugin, then use the filter hook
mb_json_pathsto set the JSON path to your custom plugin. Please follow the documentation https://docs.metabox.io/local-json/#adding-custom-foldersPeter
ModeratorHello,
If you want to check the previous value of a field, please use the action hook
rwmb_{$field_id}_after_save_field. Refer to the documentation https://docs.metabox.io/actions/rwmb-after-save-field/I hope that helps.
-
AuthorPosts