Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Currently, it's not possible. Each field group is a post and will be saved to the table
wp_postsas a post typemeta-box. It works like other plugins like WooCommerce: order, coupon.
If you don't want to use the field group with UI, you can use the code to register custom fields. Refer to the documentation https://docs.metabox.io/creating-fields-with-code/Peter
ModeratorHello,
Please contact us here https://metabox.io/contact/
if you have a refund request.Peter
ModeratorHello,
You can use the filter hook
rwmb_normalize_{$field_id}_fieldto override the field settings. Please follow the documentation https://docs.metabox.io/filters/rwmb-normalize-field/Peter
ModeratorHello,
I'm afraid it isn't possible. The solutions are extra plugins for the Lifetime Bundle license.
July 17, 2023 at 10:42 PM in reply to: Relationships + FE Submission: Trying to create relationship programmatically #42609Peter
ModeratorThat's strange. If an "update" post is created, the variable
$post_idshould be the post ID. Please share your staging site admin account via this contact form https://metabox.io/contact/
I will help you to check the issue.July 17, 2023 at 8:34 PM in reply to: Relationship setup (following schema.org and Google rich snippets) #42607Peter
ModeratorHello,
If you don't want to sort or filter the post (person) by performer or organizer, just output the value, you can use the custom field instead of the taxonomy. Please read more in this article https://metabox.io/custom-fields-vs-custom-taxonomies/
Peter
ModeratorHello,
If you don't want to use custom code, please try to use the solution MB Favorite Posts
https://metabox.io/plugins/mb-favorite-posts/and read more about this plugin in the documentation https://docs.metabox.io/extensions/mb-favorite-posts/
Peter
ModeratorHello,
You should remove the single quote in the key box and put 9 in the value box, like this https://imgur.com/SHg0Rxv
Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#custom-settings
July 17, 2023 at 6:06 PM in reply to: ✅Switched from Builder to Code and Now Relationship Doesn't Show #42600Peter
ModeratorHello,
In the builder, you can use the dot notation or JSON notation to pass an array to query args. Read more in the documentation https://docs.metabox.io/extensions/meta-box-builder/#dot-notation
Peter
ModeratorHello,
Meta Box does not support tracking the user time in/out, location or other activities. You may use a member plugin to have that feature.
Peter
ModeratorHello,
MB Builder will use a parser to convert settings in JSON files to a field group and save it as a post type, not with just the WordPress function wp_insert_post().
July 17, 2023 at 5:47 PM in reply to: ✅Issue with disappearing data in metabox.io custom fields #42597Peter
ModeratorHello,
It might be related to the new version of the builder to change that option from checkbox to switch, I think. Anyways, thanks for your confirmation.
Peter
ModeratorHello,
Yes, using the filter
rwmb_subfieldID_wrapper_htmlorcustom_htmlfield, you need to add the close tags for all open tags. Only the field settingsbeforeandaftercan support your case.July 15, 2023 at 3:53 PM in reply to: ✅Switched from Builder to Code and Now Relationship Doesn't Show #42585Peter
ModeratorHello,
You can find the relationship in the builder by going to Meta Box > Relationships. Or find the item in the table
wp_postswith post typemb-relationship.Regarding your second question, what is the taxonomy query vars in your case?
July 15, 2023 at 3:45 PM in reply to: Relationships + FE Submission: Trying to create relationship programmatically #42584Peter
ModeratorHello,
If this code
add_action( 'rwmb_frontend_after_process', function( $config, $post_id ) { MB_Relationships_API::add( 123, 456, 'projects_to_updates' ); }, 10, 2 );still does not work, please try to deactivate all plugins except Meta Box, MB extension plugins and switch to a standard theme of WordPress then check this issue again.
-
AuthorPosts