Forum Replies Created
-
AuthorPosts
-
July 29, 2022 at 11:14 PM in reply to: ✅post type with select_advanced broken in latest version - works in previous one #37273
Long Nguyen
ModeratorHi,
Please share your site or staging site credentials via this contact form https://metabox.io/contact/
I will take a closer look.Long Nguyen
ModeratorHi,
I think the case storing each meta box and its custom field values in a separate custom table would be better. The custom table stores each post ID in a row and each cell is a field value so if you store all fields of all CPTs in a custom table, there are too many columns in that table and will affect the performance of query posts which you can read here https://docs.metabox.io/extensions/mb-custom-table/#query-posts-with-wp_query
There are no different or limited capabilities when storing custom fields of a meta box in a separate table.
Long Nguyen
ModeratorHi,
When editing the post, there is a parameter in the URL pointing to the post ID and you can get the post status based on that value.
$post_id = $_GET['rwmb_frontend_field_post_id']; $post_status = get_post_status( $post_id );then create an if statement to check the post status to show/hide the button.
Long Nguyen
ModeratorHi,
There is a little CSS code to style the frontend dashboard, it is just a table to display list of posts and some buttons to delete/edit a post. I don't know what is not good in your case, can you please share some screenshots of the issue on your site?
July 29, 2022 at 9:42 PM in reply to: ✅An issue with the `file_upload` field when it's required #37269Long Nguyen
ModeratorHi,
Thank you for your feedback.
I also experience that issue on my demo site. I've escalated the issue to the development team to fix it in the next update.
Long Nguyen
ModeratorHi Lee,
Meta Box does not support a hook to validate field value on the backend like that. You can follow this article to display an error message on the backend when saving the post https://www.sitepoint.com/displaying-errors-from-the-save-post-hook-in-wordpress/
Long Nguyen
ModeratorHi,
Refer to this topic https://support.metabox.io/topic/how-to-display-that-are-in-a-group/
MB Beaver Builder Integration does not support getting subfield value currently. So please use the top field to work with Conditional Logic of Beaver builder.
July 28, 2022 at 6:43 PM in reply to: ✅post type with select_advanced broken in latest version - works in previous one #37257Long Nguyen
ModeratorHi,
I do not see any issue with your code on my demo site. Can you please try to deactivate all plugins except Meta Box and switch to the standard theme of WordPress then recheck this issue?
July 28, 2022 at 11:30 AM in reply to: ✅Draft button that saves even if required fields not completed #37249Long Nguyen
ModeratorHi Yasmine,
You can set the attribute
formnovalidateto the submit button or trigger a JS code to remove the attributerequiredof the field. Please read more on this topic https://stackoverflow.com/questions/18725078/bypass-html-required-attribute-when-submittingJuly 28, 2022 at 11:19 AM in reply to: ✅Can't see the settings page custom fields under Media menu #37248Long Nguyen
ModeratorHi,
Thanks for following up.
This issue has been fixed in a new commit of our development team. It will be included in the next release.
July 28, 2022 at 11:13 AM in reply to: Wrong "Category" items showing up in a totally different CPT #37246Long Nguyen
ModeratorHi,
You can change the Notice category slug to
notice_catby going to Meta Box > Custom Taxonomies > Edit Notice and change the slug. The taxonomies can have the same Plural/Singular name but must have different slugs, the slug must be unique. You can read more here https://developer.wordpress.org/reference/functions/register_taxonomy/
and the section Reserved terms.July 28, 2022 at 11:03 AM in reply to: ✅Can't get text field from settings to render inside a view #37245Long Nguyen
ModeratorThis issue is resolved by adding the option name of the settings page in the builder to make it works.
Let me know if you have any questions.
Long Nguyen
ModeratorHi,
Can you please share some screenshots of the issue on your site? And share your site URL, I will help you to check the issue.
July 27, 2022 at 10:11 PM in reply to: Trying to pull posts using either an array or wildcard #37234Long Nguyen
ModeratorHi,
You can try to use the search parameter of the WP Query, please read more here https://developer.wordpress.org/reference/classes/wp_query/#search-parameters
and refer to this topic https://stackoverflow.com/questions/50717222/wordpress-search-query-exact-post-title-matchJuly 27, 2022 at 10:02 PM in reply to: ✅Update - Combine Custom Post With Details from another Post Type #37233Long Nguyen
ModeratorHi,
Sorry, somehow the custom table is not created when I test the feature on your site at that time. I found the issue on your site is, that you need to save the custom field value to the custom table for all field groups on a page. If I set the field group User Profile save data to the custom table
my_custom_table888then all custom fields saved value as well.Can you please confirm this?
-
AuthorPosts