Forum Replies Created
-
AuthorPosts
-
December 15, 2022 at 9:54 PM in reply to: ✅Fatal error when attempting to edit custom post type #39820
Peter
ModeratorHello guys,
Please update the plugin Meta Box AIO to the latest version 1.16.8 to fix this issue.
Let me know how it goes.
December 14, 2022 at 11:14 PM in reply to: wpd bzw. query vars --> order by --> MB Custom Table #39799Peter
ModeratorHello,
It's not possible to order by field value with WP Query, and it is noted in the documentation
It's important to understand that the plugin doesn't hook to the WP_Query to get posts by custom fields stored in the custom table. In other words, using meta_* in WP_Query for custom fields won't work. To get posts by custom fields in the custom table, you need to make an extra query to get the post IDs first. Then use these IDs to get full post objects.That means, if you use the custom table to store custom field value, you need to use the SQL query to get the post ID based on the field value.
Please read more here https://docs.metabox.io/extensions/mb-custom-table/#query-posts-with-wp_query
Peter
ModeratorHello there,
After submitting a form, the page will scroll to the form message and it is the standard behavior. I will inform the development team to consider supporting an option to disable this action.
December 14, 2022 at 10:57 PM in reply to: Customizer "something went wrong" when advanced image is reset #39795Peter
ModeratorHello Aaron,
Thanks for your feedback.
I also see that issue on my demo site. If you publish the change and see the error message like "something went wrong", you can reload the customizer page and change other settings again. I will inform the development team to check this issue and fix it in the next update.
Peter
ModeratorHello there,
Can you please share the error log or error message on your site? You can enable WP debug to get it.
December 14, 2022 at 10:01 PM in reply to: Critical error when updating to latest version of Meta Box AIO #39790Peter
ModeratorHello,
I'm not able to reproduce the issue on my demo site. Can you please deactivate all plugins except Meta Box, MB AIO, switch to the standard theme of WordPress (Twenty TwentyTwo) and check this issue again?
If it does not help, please share your site credentials and FTP to this contact form https://metabox.io/contact/
I will take a closer look.Peter
ModeratorHello,
THis issue has been fixed in the new version of Meta Box AIO 1.16.8. Please update the plugin to edit/create the custom post type.
December 14, 2022 at 9:57 PM in reply to: ✅How to add new clone to a cloneable text list custom field with three inputs #39788Peter
ModeratorHello,
It is not possible, you have to update the whole text list data in the database.
December 14, 2022 at 9:43 PM in reply to: ✅generate php code for custom field beside Generated Custom field in AIO #39787Peter
ModeratorHello,
>> use php code will make metabox load fast than in the builder?
The editing page will be loaded faster if you have a large number of fields (maybe> 100 fields), otherwise, I do not see using the code will load the page faster too much.>> If i use custom field generated in the builder, is it slow loading
No, because the generator only works if you click on the button to generate the code.Peter
ModeratorHello,
If you did a mistake when creating custom fields for the comment (comment meta), you can just access the hosting and edit the template file to fix it.
Regarding the error message, if it still happens on your site, please make sure that you have the latest version of Meta Box 5.6.14 and Meta Box AIO 1.16.8. You can also create a comment meta with the builder. Please read more on the documentation https://docs.metabox.io/extensions/meta-box-builder/
Peter
ModeratorHello there,
Unfortunately, the field
postonly supports displaying post title in the selection. There is no filter to change the post title to another post data.Peter
ModeratorHello,
The bug is noticed by our developer and added to the working list but it is our internal tracking tool so other users cannot see that. Please keep in mind that we will update the plugin to fix the bug as soon as possible. Thanks.
Peter
ModeratorHello,
Yes, the time will be saved to the database with the India timezone. I do not have a VPN to test, if you have one please test this on your own.
Meta Box does not support a countdown timer field, you can use a third party plugin such as https://wordpress.org/plugins/widget-countdown/
to display a countdown on your site.Peter
ModeratorHello,
The issue with Advanced Location has been fixed in the new version of Meta Box 5.6.14. Please update the plugin to make it works.
December 13, 2022 at 11:00 PM in reply to: ✅How to add new clone to a cloneable text list custom field with three inputs #39765Peter
ModeratorHello,
You can use the code below to update the cloneable text list value to the custom table
add_action( 'save_post', function( $post_id ) { $data = [ 'id_of_text_list' => [ ['date1', 'name1', 'price1'], ['date2', 'name2', 'price2'], ['date3', 'name3', 'price3'], ] ]; \MetaBox\CustomTable\API::update( $post_id, "cmp_customfields", $data ); } ); -
AuthorPosts