Forum Replies Created
-
AuthorPosts
-
December 14, 2022 at 9:43 PM in reply to: ✅generate php code for custom field beside Generated Custom field in AIO #39787
Peter
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 ); } );Peter
ModeratorHello,
I do not see the issue on my demo site when using the helper function
rwmb_meta()to get the term meta. Can you please update the plugin MB Term Meta to the latest version 1.2.10 and check this issue again? If you are using the older version (below 1.1), you can use the WordPress functionget_term_meta()only.December 13, 2022 at 10:05 PM in reply to: ✅generate php code for custom field beside Generated Custom field in AIO #39760Peter
ModeratorHello there,
>> I think that if I generate Custom Field (for custom post type) in Metabox AIO => will this solution slow loading than Generated PHP Code (from AIO) ?
Sorry, I do not understand this question clearly. Can you please clarify it again? If you want to generate the PHP code to run in the file functions.php please read the documentation below.
If you generate the PHP code and run it to create the custom fields, you can delete the field group in the builder as well.
Please read more on the documentation https://docs.metabox.io/extensions/meta-box-builder/#getting-php-code
December 13, 2022 at 9:54 PM in reply to: Urgent: Critical error after adding fields to CPTs (latest version of MB) #39758Peter
ModeratorHello Martin,
As you can see in the log, the error comes from the plugin Oxygen builder. So I recommend contacting Oxygen support to ask for help with this issue.
Thanks.
December 13, 2022 at 9:52 PM in reply to: ✅Uncaught Error: Class "RWMB_Update_Option" not found #39757Peter
ModeratorHello,
Please refer to this topic to fix this issue temporarily https://support.metabox.io/topic/fatal-error-meta-box-aio/
December 13, 2022 at 9:50 PM in reply to: Critical error when updating to latest version of Meta Box AIO #39756Peter
ModeratorHello,
Please edit the file
wp-content/plugins/meta-box/inc/meta-box-registry.phpline 16and replace the code
public function make( array $settings ) {with this one
public function make( $settings ) {Let me know how it goes.
Peter
ModeratorHello Henrik,
This issue happens because there is a conflicting plugin with MB Group Skin. Can you please deactivate all plugins except Meta Box, MB extensions, Elementor, Elementor Pro and check this issue again?
It is confirmed by another user on this topic https://support.metabox.io/topic/elementor-theme-builder-meta-box-group-skin-does-not-exist/Peter
ModeratorHello,
This issue has been fixed on this commit https://github.com/wpmetabox/mb-custom-post-type/commit/8e65f6e176f3522a1ee04af94b771a9eb768ff86
You can apply the changes on your site while waiting for the new version of MB Custom Post Type plugin.
Peter
ModeratorHello,
There is a compatibility issue with the new version of Meta Box, please edit the file
wp-content/plugins/meta-box-aio/vendor/meta-box/mb-custom-post-type/src/Edit.phpline 111-112 and
replace the code$update_option = new \RWMB_Update_Option(); $update_checker = new \RWMB_Update_Checker( $update_option );with this one
$update_option = new \MetaBox\Updater\Option(); $update_checker = new \MetaBox\Updater\Checker( $update_option );to temporarily fix this issue. It will be included in the next update. Thanks.
-
AuthorPosts