Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I can see the issue on my demo site. Following the documentation, you should use the option "Remove default meta box" with the Classic Editor
https://docs.metabox.io/fields/taxonomy/
https://wordpress.org/plugins/classic-editor/When editing the taxonomy in Meta Box > Taxonomies, you can disable option "Show on edit page" in the Advanced tab, to remove the default taxonomy box of WordPress.
Peter
ModeratorHello,
1. I have around 100 items and if I click on Toggle All, it only takes less than 1 second to check all items. You can try on a fresh installation of WordPress and Meta Box and observe the issue again.
2. Regarding the checkbox_tree, yes, the child item shows from the start. If you want to show the child item when selecting the parent item, please use the field type select_tree.
June 23, 2023 at 10:57 PM in reply to: Adding thousands separator and decimals with a filter - my code not working #42337Peter
ModeratorHello,
Do you try to combine the code? Replacing the
echostate withreturn? For example:add_filter( 'rwmb_meta', function( $value, $field_id, $args, $object_id ) { if ( $field_id == 'number' ) { $value = number_format( $value, 3, '.', ',' ); $value = rtrim( $value, '0.' ); } return $value; }, 10, 4 );Also, this filter will work when you call the function
rwmb_meta()to display the value on the frontend. It will not work with other page builders if they are getting field value from the database.So I don't think there is a difference between using the code to
echofield value on the frontend with the filter.June 23, 2023 at 10:39 PM in reply to: Unable to access my custom model link listed under my custom menu setting page. #42336Peter
ModeratorHello,
I see that issue on my demo site. I've escalated it to the development team to fix it in the next update.
Thanks.
Peter
ModeratorHello,
If you are familiar with coding, you can follow the documentation below to create a custom field type and add that library to your field.
https://docs.metabox.io/creating-new-field-types/Peter
ModeratorHello,
I see the conditional logic does not work with the field type
select_tree. Please use other field types likeselect_advanced,checkbox_tree, to make it works.June 22, 2023 at 9:32 PM in reply to: Adding thousands separator and decimals with a filter - my code not working #42324Peter
ModeratorHello,
The number field only accepts the number value, without the format. You should format the number when outputting the field value, for example:
$number = rwmb_meta( 'number' ); $number = number_format( $number, 3, '.', ',' ); $number = rtrim( $number, '0.' ); echo $number;Refer to this topic https://stackoverflow.com/questions/14531679/remove-useless-zero-digits-from-decimals-in-php
Peter
ModeratorHello,
So I understand you are trying to display locations on a map based on the post and map field of post. Those page builder plugins are compatible with Meta Box but we do not maintain the integration on our side. If you have any questions/issues when using the builder to display the field value, please contact their support to get further assistance.
Refer to our support policy https://metabox.io/support/topic/support-policy/If you want to display all locations on the map with coding, please follow this tutorial https://docs.metabox.io/tutorials/display-listings-on-map/
Peter
ModeratorHello,
Thanks for your feedback. There should be a little space between the checkbox and label. I will inform our development team to add the space in the next update of the plugin.
Peter
ModeratorHello,
Thanks for your feedback. I've escalated this issue to the development team to fix this issue in future updates.
June 21, 2023 at 9:10 PM in reply to: Which Elementor Integration Plugin should be used? Via Metabox AIO or Separate #42312Peter
ModeratorHello,
Currently, the single plugin will be released first. Then MB AIO will be released later with a bundle of other extensions. So you can see the MB Elementor Integrator in MB AIO is an older version 2.1.7.
If you want to use the new version, you can install and activate the single plugin, it will override the functionality of the plugin in MB AIO.
June 21, 2023 at 8:57 PM in reply to: Archive Template tags are not working with Php 8.0 in meta views #42311Peter
ModeratorHello,
I add the code
if( !is_array( $value ) ) return;
to the file wp-content/plugins/meta-box-aio/vendor/meta-box/mb-views/src/Fields/Video/Renderer.php after line 11it looks like this
$value = RWMB_Video_Field::file_info( $value ); if( !is_array( $value ) ) return;June 21, 2023 at 8:19 PM in reply to: Emergency. All of my CFs disappeared for when I switched a radio to a switch. #42310Peter
ModeratorHello,
This issue has been noticed by our development team and it is fixed in a new commit. Please wait for the next update of the plugin MB Builder or MB AIO to fix the issue.
Related ticket: https://support.metabox.io/topic/bug-ui-disappears-after-changing-sub-group-item-to-checkbox/
Peter
ModeratorHello,
There are 3 builder plugins in your post so I'm not what causes the issue there. Does the issue happen in the backend or frontend? Please share some screenshots of the issue and check the Console tab in the Inspect tool of the browser to see if there are JS errors there.
Peter
ModeratorHello,
Meta Box does not support ordering CPT and terms like that. You can use a third-party plugin to order CPT and terms manually:
https://wordpress.org/plugins/post-types-order/
https://wordpress.org/plugins/custom-taxonomy-order-ne/ -
AuthorPosts