Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Nick,
It isn't possible. When the URL has the parameter "rwmb_frontend_field_post_id", it will replace the attribute
post_idof the form shortcode.
You can check the functionpopulate_via_query_string()in the file /mb-frontend-submission/src/FormFactory.php to understand the workflow.March 12, 2024 at 9:58 PM in reply to: multiple front end forms on one page and url parameter queries #44820Peter
ModeratorHello Nick,
It isn't encouraged to use more frontend forms on a page some features might not work properly. You should use one frontend form/shortcode per page.
Related topics
https://support.metabox.io/topic/multiple-frontend-submission-forms-and-ids/
https://support.metabox.io/topic/multiple-forms-of-same-type-on-same-page/Peter
ModeratorHello,
I see the login form displays the same in English and French languages, screenshots https://imgur.com/a/7wHMqKW
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.March 11, 2024 at 10:42 PM in reply to: ✅Possible to add custom fields as columns in the Front-end submission dashboard? #44806Peter
ModeratorHello,
The current frontend dashboard doesn't support showing extra columns or filter posts. You can follow this topic to create a custom frontend dashboard on your own https://support.metabox.io/topic/duplicate-dashboard-shortcode
the post list in the dashboard is just created by a WP query.Peter
ModeratorHello Chris,
You can try to follow this tutorial to increase the PHP setting
max_input_varsto fix the issue
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Let me know how it goes.
Peter
ModeratorHello Nick,
Yes, you can update the $_POST value when validating the form. For example:
add_filter( 'rwmb_frontend_validate', function( $validate, $config ) { $_POST['field_id'] = 'test field value'; rwmb_request()->set_post_data( $_POST ); return $validate; }, 10, 2 );Following the documentation https://docs.metabox.io/actions/rwmb-before-save-post/
Peter
ModeratorHello,
If the value is serialized in the database, like group field, it is difficult to query posts by a subfield value. You can use an SQL query or a third-party plugin to do that. Please follow the documentation
https://metabox.io/create-group-of-custom-fields-with-meta-box-group/#how-does-the-meta-box-group-save-data
https://docs.metabox.io/extensions/mb-custom-table/#query-posts-with-wp_queryPeter
ModeratorHello Nick,
Are you using custom code to create the CSS on your end? If you want to override the style of columns.css, you can use the
!importantproperty..rwmb-hidden-wrapper { display: none !important; }March 11, 2024 at 9:19 PM in reply to: ✅Get Fields from Records in a Reciprocal Relationship of a Related Post #44800Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look.Peter
ModeratorThanks for sharing the solution.
Peter
ModeratorHello Nick,
WordPress itself saves the array to the database as a serialized string and our plugin works with that standard feature. There are some benefits noted in the documentation https://docs.metabox.io/cloning-fields/#data-of-cloneable-fields
- Works for all field types, including nested groups.
- Works perfectly with the helper function or with WordPress's get_post_meta function (WordPress automatically deserializes string and returns an array).
- Reduces the database size (number of rows), especially when you have nested groups of many fields.March 10, 2024 at 10:29 PM in reply to: ✅Password Reveal Button - touch/click button issue with CSS #44789Peter
ModeratorHello Nick,
Thanks for the feedback. I will inform the development team to consider improving the display of the show password icon.
Peter
ModeratorHello Nick,
Currently, we don't support plus and minus for the number field like that. You can create a custom field type by following the documentation https://docs.metabox.io/creating-new-field-types/
Peter
ModeratorHello,
You can use the
postfield to show a dropdown that lists all pages. Please follow the documentation
https://docs.metabox.io/fields/post/Peter
ModeratorHello Jan,
Please ensure the field group ID is added to the user profile shortcode in the French language. If not, the warning message will be displayed.
-
AuthorPosts