Forum Replies Created
-
AuthorPosts
-
August 20, 2025 at 11:13 PM in reply to: Is possible to also have post title, post content, thumbnail in custom table? #48786
Peter
ModeratorHello,
Thanks for reaching out.
It is possible but you should do that in the frontend with frontend form, following the documentation
https://docs.metabox.io/extensions/mb-frontend-submission/#field-orderIn the admin area, WordPress expects at least the default post title (of WordPress) to be available to generate the permalink.
Peter
ModeratorHello Ronny,
Thanks for reaching out.
I'm afraid that there isn't an option to change the order of posts for the author. You or the editor user can manually change the order of posts in the admin area.
August 20, 2025 at 10:51 PM in reply to: PHP Warnings that cause server php error log filled up #48784Peter
ModeratorHello,
Thanks for reaching out.
Do you know how to reproduce the issue with clear steps? Or are you using a filter/action hook to customize Meta Box field on your site?
https://docs.metabox.io/category/references/Peter
ModeratorHello,
Here is an example
$groups = get_post_meta( $post_id, 'field_id' );
following the documentation https://developer.wordpress.org/reference/functions/get_post_meta/Please note that we don't support the customization code. If you are not able to complete the task, we offer a customization service with an extra fee. Please contact us here for more details https://metabox.io/contact/
August 20, 2025 at 9:52 PM in reply to: Tab style settings added to Custom Settings after updating to MB UI 5 #48782Peter
ModeratorHello,
Thanks for the feedback.
I will forward this issue to the development team to check and fix it in future updates. Let me know if you have any questions.
Peter
ModeratorHello,
You can enable the sort option when editing the field. On the post listing page, click on the column title to sort posts by the switch field. Please check these screenshots
https://ibb.co/jPcP6x20
https://ibb.co/5xY7Z0BWPeter
ModeratorHello,
The callback function for the select field must return an array of keys and values. Refer to this topic:
https://support.metabox.io/topic/custom-field-select-is-not-saving-or-displaying-value/#post-41725Also, the helper function
rwmb_meta()doesn't work at the init hook when registering the custom fields. You can use the WordPress functionget_post_meta()to get the field value (post meta) in the callback function.August 19, 2025 at 10:59 PM in reply to: Tab style settings added to Custom Settings after updating to MB UI 5 #48770Peter
ModeratorHello,
Thanks for reaching out.
I'm not able to reproduce the issue with tab style settings. If I select the style left of box, the style is not added to the Custom Settings section. Can you please let me know steps to reproduce the issue or share a screen record of the steps?
Peter
ModeratorHello,
Thanks for reaching out.
In case of using Oxygen 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/August 18, 2025 at 10:27 PM in reply to: โ Getting query parameters from URL. It works and it doesn't #48757Peter
ModeratorHello Eddy,
It isn't possible to assign a variable to a shortcode like that. You have to assign a value to a variable: string, number, array, object ... For example:
{% set username = 'my-name' %}or a function that returns the expected value:
{% set username = mb.my_function_name() %}If you are not familiar with this, we offer a customization service with an extra fee. Please contact us here https://metabox.io/contact/ for more details.
Peter
ModeratorYes, and update Meta Box AIO to the new version 3.0.0 to get the updates from MB Custom Post Types also.
Thank you.
Peter
ModeratorHello Ben,
Thanks for reaching out.
No, you can update the single plugin MB Custom Post Types to the new version properly. However, you can use only one plugin Meta Box AIO and deactivate Meta Box, MB Custom Post Types, still get the full features of Meta Box plugins.
Peter
ModeratorHello,
There isn't a list of all filter/action hooks of Meta Box plugins. Because some of them are rarely used, we have a list of filter/action hooks that are usually used. Please check the documentation https://docs.metabox.io/category/references/
Thanks.
Peter
ModeratorHello,
The re-order posts feature is applied to the CPT created by Meta Box only. For the default Post and Page of WordPress, you can use another plugin to sort posts or pages.
August 14, 2025 at 11:18 PM in reply to: Cloneable Group Data Not Displaying in Backend Edit Screen #48742Peter
ModeratorHello,
Please enable the option
Save field valuefor sub-fields in the group field to show the saved value, check this screenshot https://imgur.com/0EOEca2Let me know if it helps.
-
AuthorPosts