Forum Replies Created
-
AuthorPosts
-
February 4, 2025 at 11:14 PM in reply to: ✅Bricks Builder Query Editor Loop code for Image Advanced #47587
Peter
ModeratorHello Jeffrey,
The helper function rwmb_get_value() will return some additional information to the value like image info, not only the image IDs so if you pass the value to the argument
post__in, it might not work.I suggest you use the WordPress function get_post_meta() or add a specific post ID to this function to see if it works.
Peter
ModeratorHello Solace,
The compatibility between Meta Box and Oxygen is maintained on the Oxygen side. So if you have any issues when using it with Meta Box, please contact Oxygen support to get further assistance.
Refer to our support policy https://support.metabox.io/topic/support-policy/Thank you.
Peter
ModeratorHello,
Currently, MB Settings Page doesn't support adding the pen icon to the element in the customizer to quickly edit the field. It is noted in the documentation https://docs.metabox.io/extensions/mb-settings-page/#compatibility
The postMessage transport for the Customizer is not supported yet, which means changes are updated by refreshing the whole page instead of updating only the needed part of the page.Peter
ModeratorHello Joe,
Can you please check if the second text field
vita_group_contentis enabled cloneable option? If yes, that is an expected result.
I also try to reproduce that issue on my end and don't see that, here is the screenshot https://imgur.com/rW95I2NPeter
ModeratorHello,
It might relate to the issue with SCRIPT_DEBUG constant in this topic https://support.metabox.io/topic/preview-inside-gutenberg-is-broken/
If not, can you please share some screenshots of the issue, export the block field group to a JSON file or code to register the block and share it here? I will try to import and reproduce the issue on my site to check the issue.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importFebruary 3, 2025 at 11:13 PM in reply to: ✅Text area field rendered with Elementor, shows HTML instead of rendering it #47578Peter
ModeratorHello Adamo,
What is the Elementor widget that you use to output the field value? I use the Text Editor widget to output the textarea field value and it shows the order-list in the frontend properly.
Please check these screenshots https://imgur.com/a/RJtZu11February 3, 2025 at 10:47 PM in reply to: ✅'Hidden' Field type with 'std' value does not get saved in clone #47577Peter
ModeratorHello
I try to reproduce the issue but don't see that on my site. The default value of a hidden field in the cloneable group entry is saved to the database as well. Here is the sample code:
[ 'name' => __( 'Group', 'your-text-domain' ), 'id' => $prefix . 'group_pd0few9tv1o', 'type' => 'group', 'clone' => true, 'fields' => [ [ 'id' => $prefix . 'hidden_z66lqr03m5k', 'type' => 'hidden', 'std' => __( '123asdf', 'your-text-domain' ), 'clone_default' => true, ], ], ],I suggest you enable the setting
Clone default valuefor the group field and recheck this issue. Let me know how it goes.Peter
ModeratorHello Nick,
The frontend submission form now supports submitting custom models from frontend. When using the frontend form shortcode, you should assign
object_typetomodel.
Please read more about this feature in the documentation
https://docs.metabox.io/extensions/mb-frontend-submission/February 2, 2025 at 11:29 PM in reply to: Issue with Saving Custom Field Data to Custom Tables in Metabox AIO #47573Peter
ModeratorHello Martin,
Can you please export the field group to a JSON file and share it here? I will import the field group to my demo site and recheck the issue.
Please follow the documentation to export the field group https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello Ben,
Do you mean not show the boxes for each field group when editing a CPT? You can add more fields to a field group and use the tabs to show fields like that.
Following the documentation https://docs.metabox.io/extensions/meta-box-tabs/Peter
ModeratorHello,
You can check the latest versions of MB plugins on the my account page https://metabox.io/my-account/
or you can use only one plugin Meta Box AIO to have all features of MB plugins.January 26, 2025 at 10:49 PM in reply to: Alpha 5.0.0 version - Group Field: Sortable option missing in UI #47546Peter
ModeratorHello,
Thank you for your feedback.
You are correct. The feature to sort clones "Allow to reorder clones" doesn't work in the builder Alpha 5.0.0 version for the group field. I've escalated this issue to the development team to fix this.
Peter
ModeratorHello,
I've received the credentials. I try to use the latest version of Meta Box plugins then the social icons displayed correctly at the footer of your site. Please check these screenshots (removed).
can you please recheck this and confirm it works on your end?
January 25, 2025 at 10:44 PM in reply to: ✅Displaying multiple files with line break instead of comma #47543Peter
ModeratorHello,
You can follow the documentation below to use the code to output the field value
https://docs.metabox.io/fields/file-advanced/#template-usagethen you can output the items in any list as you want. Here is an example
<?php $files = rwmb_meta( 'my_field_id' ); ?> <h3>Uploaded files</h3> <ul> <?php foreach ( $files as $file ) : ?> <li><a href="<?= $file['url']; ?>"><?= $file['name']; ?></a></li> <?php endforeach ?> </ul>Peter
ModeratorHello Patrik,
Please share the relationship settings between FAQs and Services, query code to get the relationship data. I will help you check the issue.
Refer to the documentation https://docs.metabox.io/extensions/mb-relationships/ -
AuthorPosts