Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I see the option "Save field value" is not enabled so the field value will not be saved. Please enable this option for all fields and check the issue again.
Screenshot https://monosnap.com/file/iJQ404spOgT9PSu6tjYLPU9OYZEjPzPlease read more on the documentation https://docs.metabox.io/field-settings/
Peter
ModeratorHello,
Thank you for your feedback.
Working with the media modal is not easy because it uses JS code to render and save data also. We are also trying to improve our fields to work with this.
I'm going to escalate those issues to the development team to fix them. Just one note:
the selection applied to the media is not registered (saved), when looking into the admin panel media category list, "0" remains after each value
You are using the field typetaxonomy_advancedso it will save the post meta, not set the post terms. Then you will not see the number of posts (image) associated with a taxonomy.Please read more on the documentation https://docs.metabox.io/fields/taxonomy-advanced/
February 14, 2023 at 10:48 PM in reply to: Can repeatable fields (the MB extension) be exported w/ MB Builder? #40518Peter
ModeratorHello Morgan,
Meta Box does not support a repeatable field, I think you are talking about the cloneable field, please read more here https://docs.metabox.io/cloning-fields/
It is a native feature of field settings, which means any field can be cloned, no need to use a specific field. And of course, it can be generated to PHP code.February 14, 2023 at 10:44 PM in reply to: ✅Setting Default Values For MB Builder Custom Field Types #40517Peter
ModeratorHello,
Currently, there is no option to set the default value when adding a new field in the builder. I will inform the development team to consider supporting this in future updates.
If you want to set the default value for the field when editing the post, please use the field settingstd.February 14, 2023 at 10:11 PM in reply to: Gutenberg Block with Relation does not work anymore #40516Peter
ModeratorHello,
I have not received any email from you. Can you please resend it?
Peter
ModeratorHello,
I'm not sure if two plugins can work with custom fields created by Meta Box. But if it can work with default custom fields of WordPress, it can work with some simple fields created by Meta Box like
text,number,email...Peter
ModeratorHello,
This text is registered for translation under the domain "mb-user-profile". If you are using a translation plugin, please scan the plugin and find the text with the domain to translate.
You can find it in the file /mb-user-profile/src/Forms/Info.php line 34
Peter
ModeratorHello,
If you use the attribute
edit='true', for example:[mb_frontend_form id='my-custom-fields' post_fields='title' edit='true'], you will be able to edit the post after submitting the form.If you want to edit the post on the frontend, please create a dashboard page with a frontend dashboard shortcode. It supports a table of posts that belong to the current user to edit/delete. Please read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboard
Peter
ModeratorGreat.
Let me know if you have any questions.Peter
ModeratorHello,
You can use the filter hook
rwmb_{$field_id}_valueto format the date value before saving it to the database. For example:add_filter( 'rwmb_date_03tqmu7k17qs_value', function( $new, $field, $old, $object_id ) { $timestamp = strtotime( $new ); $new = wp_date( 'd F o', $timestamp ); return $new; }, 99, 4 );replace
date_03tqmu7k17qswith your field date ID. Please read more on the documentation
https://docs.metabox.io/filters/rwmb-field-type-value/
https://developer.wordpress.org/reference/functions/wp_date/February 13, 2023 at 7:16 AM in reply to: MB Custom Post Type causes PHP Fatal error after upgrading to PHP 8.0 #40498Peter
ModeratorHello,
Thanks for sharing the solution.
Instead of modifying the source code of WordPress directly, please try to go to the admin area > Dashboard > Updates > Update WordPress to the latest version 6.1.1 or re-install it.
Let me know how it goes.
February 13, 2023 at 7:11 AM in reply to: MB slows down site and editing pages + doesn't seem to save in custom table #40497Peter
ModeratorHello Travis,
Please share your staging site credentials by submitting this contact form https://metabox.io/contact/
I will take a closer look.Thanks.
February 13, 2023 at 7:08 AM in reply to: ✅Google Map Field attached to User Profile not updating #40496Peter
ModeratorHello,
Thanks for your additional information.
I understand the issue. If you use the Meta Box Google map field (and address field maybe), you are using the extension MB Geolocation also to populate the info (city, country ...) to the address fields. Please read more here https://docs.metabox.io/extensions/meta-box-geolocation/
And it is possible that the extension MB Geolocation is not integrated with WS Form on their end (the team creates the integration).
I hope that makes sense.
Peter
ModeratorHello Mike,
Meta Box has an extension that supports creating a relationship between 2 objects like user-to-post/term/user. It is possible to link users of two groups to each other in the backend. But on the frontend, you might need to create some custom code to display the relationship. Please read more on the documentation https://docs.metabox.io/extensions/mb-relationships/.
Peter
ModeratorHello there,
As I can see in the tab Text, there are some HTML tags
<div>and<h2>. Those tags break the line so no need to use the<br>tag. Can you please share a screenshot in the frontend or URL of the post if it does not work? -
AuthorPosts