Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Can you check the radio subfield ID? It should have the format: Use only numbers, letters, and underscores (and rarely dashes). Following the documentation https://docs.metabox.io/field-settings/
If it still doesn't work, please share some screenshots of the field settings in the builder. I will help you check the issue with the field.
Peter
ModeratorHello,
The theme.json doesn't relate to the field settings. If you want to add your style to the field settings, you can try to use this action hook
rwmb_enqueue_scriptsto enqueue your style/script file. Following the documentation https://docs.metabox.io/actions/rwmb-enqueue-scripts/Peter
ModeratorYou can try to apply the fix on your site and see how it goes. Here is the screenshot of the updated code https://imgur.com/gcDbOpP
Peter
ModeratorHello Eddy,
Please share 2 full screenshots: relationship settings and View template. I will help you check the issue.
Peter
ModeratorHello,
The feature request is added to the backlog development queue. Hopefully, it will be available soon.
Thanks.
August 1, 2024 at 9:06 PM in reply to: ✅image_advanced data not stored as multiple rows in database anymore #46074Peter
ModeratorHello,
but still saves the data as serialized as I saidDo you use the option cloneable for the image advanced field? If yes, the field value will be serialized in the database as it is.
Peter
ModeratorHello,
As I mentioned above, the tab doesn't work with the group field as a subfield. I also don't recommend making the cloneable group to pages, it will break the HTML structure of the field. If you want to add a custom HTML field or classes, feel free to test with that.
Peter
ModeratorHello David,
Currently, MB Tabs doesn't support that feature. You can use the group field with the collapsible option to have that feature. Please follow the documentation https://docs.metabox.io/extensions/meta-box-group/#collapsible-groups
Peter
ModeratorHello,
You can use the WordPress function maybe_serialize() to serialize an array
https://developer.wordpress.org/reference/functions/maybe_serialize/or use an online tool https://onlinephp.io/serialize
or use an import plugin that supports importing MB group field value.
https://www.wpallimport.com/
https://www.smackcoders.com/wp-ultimate-csv-importer-pro.htmlPeter
ModeratorHello Marc,
I think the WSForm looks into the database and lists the custom fields that have value on their plugin to map the form fields.
After creating a field group, you can just edit or create a new post, set some sample values and save the post to make fields available in the database.Related topic https://support.metabox.io/topic/gravity-forms-submissions-not-updating-user-meta/#post-22560
Peter
ModeratorHello Ger,
The issue happens because the view shortcode runs the frontend only. If you use Ajax, that means the shortcode is called in the admin area and it won't work.
We've fixed that issue and it will be included in the new version of MB Views.Peter
ModeratorHello Michele,
Can you please migrate your local site to an online staging site with the same environment and share the credentials so I can check the issue?
Peter
ModeratorHello Travis,
Please export the field groups on the site where the conditional logic doesn't work. I will import field groups on my site and see what happens there.
Please follow the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello,
You can use the filter hook
rwmb_frontend_dashboard_query_argsto add more arguments to the dashboard query and filter the posts.
Please follow the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#dashboardJuly 30, 2024 at 9:29 PM in reply to: Setting Field's Default Value Based on Another Field's Input #46052Peter
ModeratorHello Johnson,
There isn't an option to copy a field value to another field on live. You need to create custom Javascript to do that.
If you want to update another field value after saving the post, you can use the action hook "rwmb_after_save_field". Please follow the documentation https://docs.metabox.io/actions/rwmb-after-save-field/ -
AuthorPosts