Forum Replies Created
-
AuthorPosts
-
Peter
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.
Peter
ModeratorHello,
So we can see that there are no issues with the Meta Box plugin itself. You should recheck your custom code and investigate the issue.
If you are not able to find it, we offer a customization service with an extra fee. Please contact us here https://metabox.io/contact/ for more details.Peter
ModeratorHello Jai,
Thanks for reaching out.
There could be an issue with the priority of loading the Meta Box plugin. If I add your code to the file functions.php in a theme folder, the CPT and custom fields are registered as well. Please check this screenshot https://ibb.co/v4LT2SF2
I think that when you plugin/custom code is executed before Meta Box plugin and filter hook
rwmb_meta_boxesso the custom field is not registered to display on the editing post.June 29, 2025 at 9:47 PM in reply to: WYSIWYG editor fields don initialize correctly if WYSWYG field is used i Grou #48517Peter
ModeratorHello Ethan,
Thank you for your feedback.
Can you please export the field group to a JSON file and share it with me? I will import it to my demo site and investigate the issue.
Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello,
If you have an issue with the license key, please contact us here https://metabox.io/contact/
Our technical team will help you solve the issue.Thank you.
Peter
ModeratorHello Jayron,
You can access the database, check the table wp_options and option name
customizacao-do-sitewhich stores all field values in the settings page.Refer to the documentation https://docs.metabox.io/extensions/mb-settings-page/#data
Peter
ModeratorHello,
I don't see any issues based on your screenshot. Please share your site credentials by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello,
Please share some screenshots of the relationship settings and the relationship box on the editing page. I will help you check the issue.
-
AuthorPosts