Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
In case of using Bricks Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/July 15, 2023 at 3:38 PM in reply to: ✅Issue with disappearing data in metabox.io custom fields #42582Peter
ModeratorHello,
Can you please check the option "Save field value" of all fields in the field group? I see it is disabled in your screen record and you only enable it for one field "Referent FS".
Peter
ModeratorHello,
This issue has been noticed by the development team and they are working on it. It will be included in the next update of Meta Box.
Thanks for your patience.
July 14, 2023 at 7:47 PM in reply to: Relationships + FE Submission: Trying to create relationship programmatically #42569Peter
ModeratorHello,
I think you can try a few things below:
2b. Change
'publicly_queryable' => true5b. Change the shortcode to this
[mb_frontend_form ajax="true" id="update-fields-group" post_fields="title" post_type="update"]If it still does not work, please add some existing IDs to the code and see if the relationship is created
add_action( 'rwmb_frontend_after_process', function( $config, $post_id ) { MB_Relationships_API::add( 123, 456, 'projects_to_updates' ); }, 10, 2 );where 123 is a
projectpost ID, 456 is aupdatepost ID.July 14, 2023 at 7:30 PM in reply to: How To: Automatically Delete a Group Clone After an Expiration Date? #42568Peter
ModeratorHello,
I think it is possible. You can use the WordPress function delete_post_meta() to delete a field value.
Or get the field value, put it into a loop and delete the last element of the cloneable and re-update the field value with update_post_meta().
It would need some custom code to do and beyond our scope of support. If you are not able to complete the task, please contact us here https://metabox.io/contact/, our development team will help you with some extra fee.
Peter
ModeratorHello,
Currently, MB Builder does not support auto-import JSON files. You need to import them manually to your site.
July 14, 2023 at 5:59 PM in reply to: ✅Issue with disappearing data in metabox.io custom fields #42566Peter
ModeratorHello,
Please check the option "Save field value" if it is disabled. If yes, please enable it and recheck this issue. See this screenshot https://monosnap.com/file/boUvSTyR4Kmm5Ls0wmDiELKehY7Lkb
Peter
ModeratorHello,
Can you please export the CPT to a JSON file and share it here? Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
July 14, 2023 at 5:51 PM in reply to: How to display the Label of a Radio Field in a repeatable group field ? #42564Peter
ModeratorHello Joe,
It might be a complicated case to use the helper function rwmb_get_field_settings() to get the group settings and some loop to get the field label.
Refer to this topic https://support.metabox.io/topic/show-label-of-select-chekbox-list/Peter
ModeratorHello,
This need to have some custom code to move data from a top field to a group field. You can refer to this topic to have a basic knowledge about that https://support.metabox.io/topic/migrating-from-regular-fields-to-a-grouped-field/#post-34319
If you are not able to complete the task, you can contact us here https://metabox.io/contact/
our development team will help you with an extra fee.Peter
ModeratorHello,
There are some issues with the WYSIWYG field and our development team is still working on it. This issue is fixed in this commit https://github.com/wpmetabox/meta-box/commit/cd7b3d26f9eea0568e5a4b56344f8e5a8a61b469
if you are familiar with coding, you can apply the changes on your site while waiting for the next update.Peter
ModeratorHello,
It is working now. Thanks for your feedback.
Peter
ModeratorHello,
There was an issue with the data center and now it works properly.
Thank you, guys, for your feedback.
Peter
ModeratorHello,
You can use those filters to wrap the subfield in a custom HTML, for example:
add_filter( 'rwmb_subfieldID_wrapper_html', function( $html, $field, $meta ) { $html = '<div class="my-class">'. $html . '</div>'; return $html; }, 10, 3);July 12, 2023 at 5:17 PM in reply to: Same value for a specific custom field of all posts of a CPT #42541Peter
ModeratorHello,
Use the settings page that lets you save/update the value in one place. Then you still need to use the custom code to update the value for fields in other posts. There isn't a solution with a few clicks to do that.
I hope that makes sense.
-
AuthorPosts