Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Please update Meta Box to the latest version 5.7.3, clear all caches (browser, plugin ...) to fix this issue. Let me know how it goes.
Peter
ModeratorHello AJ,
Your issue is not similar to the issue of Chris, please follow this ticket https://support.metabox.io/topic/fatal-single-quote-error-in-meta-box-5-7-3-and-aio-1-21-2/?swcfpc=1
or create a new one to ask for this.
I will close this ticket as it is resolved.June 26, 2023 at 11:07 PM in reply to: Ninja form short code not working in MB Views template #42381Peter
ModeratorHello,
How do you add the shortcode to View editor? Please try to add the plain shortcode to the View editor like this https://imgur.com/VCvCuFM
don't try to output it via a function likedo_shortcode().June 26, 2023 at 5:57 PM in reply to: Shortcodes not working in MB Views after updating to version 1.12.3 #42375Peter
ModeratorHello,
Our development team has noticed this issue and is working on it. It should be fixed in the next update of the plugin.
Here is a copy of Meta Box AIO 1.21.1 if you want to use it.
https://www.dropbox.com/scl/fi/466y4k0gqn0r8yj52a6kv/meta-box-aio-1.21.1.zip?dl=0&rlkey=c34k0gwxabos7gisbkm0o0j2sThanks.
Peter
ModeratorHello,
I do not fully understand your question. Do you mean to use the field group in the main language? The field group should not be translated. Please follow the documentation below to translate the custom field value.
https://metabox.io/translate-custom-fields-with-wpml/Peter
ModeratorHello,
Please share your site credentials via this form https://metabox.io/contact/
I will take a closer look.June 26, 2023 at 5:35 PM in reply to: ℹ️HOW-TO Question: Code for default MB-generated query loop in the Bricks Builder #42372Peter
ModeratorHello,
Bricks builder team maintains compatibility with Meta Box. So 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/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/
-
AuthorPosts