Forum Replies Created
-
AuthorPosts
-
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.
March 8, 2024 at 9:53 PM in reply to: Bug in select2 advanced when adding custom class name to container? #44774Peter
ModeratorHello,
There isn't an option
containerCssClassin the Select2 documentation https://select2.org/configuration/options-apiPlease correct option name and check this issue again.
March 8, 2024 at 9:50 PM in reply to: ✅Get Fields from Records in a Reciprocal Relationship of a Related Post #44773Peter
ModeratorHello,
I understand you want to display: Main widget factory > Red widget related to Main widget > Yellow, Green widgets related to Red widget
on the same page. You can use two for loops to do that, please follow this topic https://support.metabox.io/topic/traversing-multiple-related-cpts/ -
AuthorPosts