Forum Replies Created
-
AuthorPosts
-
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?February 10, 2023 at 10:37 PM in reply to: Dashboard edit link > change url qery name "rwmb_frontend_field_post_id" #40483Peter
ModeratorHello Ole,
Unfortunately, there is no option/way to change that parameter. Please leave it as it is.
February 10, 2023 at 10:28 PM in reply to: ✅Google Map Field attached to User Profile not updating #40482Peter
ModeratorHello,
What I means is when using the WS Form, the Map field value is not saved with the correct format
latitude,longitude,zoomas written down in the documentation. That's why it does not work.Also, the WS Form team maintains compatibility with Meta Box so I recommend contacting them to ask for help with this issue. You can send the link to this topic to them when submitting a question.
Please read more here https://docs.metabox.io/compatibility/February 10, 2023 at 10:07 PM in reply to: ✅Change custom field column widths displayed through shortcode #40481Peter
ModeratorHello,
The IDs of the two input fields are:
user_passanduser_pass2.Peter
ModeratorHello Peter,
Can you please export your field group to a JSON file and share it here? I will import it to my demo site to see if it works.
Peter
ModeratorHello,
Thanks, I see the issue with the validation in the block and I've escalated this issue to the development team to fix this. It will be included in the next update or so.
February 9, 2023 at 10:57 PM in reply to: Bug in File Advanced? Mime types filter out all of media library #40468Peter
ModeratorHello Scott,
I also see that issue on my demo site. I've escalated this issue to the development team to check this and get back to you if I have any information.
Peter
ModeratorHello,
I do not see the admin column registered in your code. It should be like this
array( 'id' => 'taxonomy_type', 'type' => 'taxonomy_advanced', 'name' => __( 'Type', 'ims-home-i18n' ), 'desc' => __( 'Select the type of the log', 'ims-home-i18n' ), 'taxonomy' => 'changelog_type', 'field_type' => 'select', 'remove_default' => true, 'admin_columns' => 'after title', //here ),Please read more on the documentation https://docs.metabox.io/extensions/mb-admin-columns/
-
AuthorPosts