Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
It is not possible to create relationships between custom fields. The extension MB Relationships helps you to create connections between objects (post, user, term), not the fields. Please read more on the documentation https://docs.metabox.io/extensions/mb-relationships/
May 8, 2022 at 6:05 PM in reply to: Query Args don't work the same for Relationships and Post fields #35950Long Nguyen
ModeratorHi,
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.
Long Nguyen
ModeratorHi,
You might need to contact Elementor support to ask to implement the code to output the field value. Or refer to this documentation to create a custom shortcode and add it to Elementor builder.
https://docs.metabox.io/extensions/meta-box-group/#outputing-group-with-page-buildersMay 8, 2022 at 12:47 PM in reply to: MB View shortcode including the CPT to pull the field contents from #35945Long Nguyen
ModeratorHi Robert,
If you want to use the type Shortcode and display the list CTA with field values, you can use the custom query to query and display post type CTA. Read more on the documentation https://docs.metabox.io/extensions/mb-views/#custom-query
May 8, 2022 at 12:36 PM in reply to: ✅Adding a Post Thumbnail using Metabox Field on the Front End #35944Long Nguyen
ModeratorHi,
The featured image of the post saved data to the standard table
wp_postmetaso it does not work if you save the custom field value to the custom table. You can try to save the field value to the standard table and re-check this case.Long Nguyen
ModeratorHi,
Thanks for your feedback.
I've also experienced that issue and escalated it to the development team to fix it in the next update.
Long Nguyen
ModeratorHi David,
The code is used to output the field value, you need to add it to the template file in the theme folder (for example). Read more on the documentation https://docs.metabox.io/displaying-fields-with-code/
May 7, 2022 at 3:09 PM in reply to: ✅File Upload Field work with Media Cloud? (Offloaded files to b2 or S3) #35933Long Nguyen
ModeratorHi Joe,
Thanks for your feedback.
Currently, it is not possible. The field file upload only supports uploading files to your hosting. I will inform the development team to explore the possibility.
Btw, you can use the field
file_inputto add the URL of the file which can be uploaded from the cloud. Read more on the documentation https://docs.metabox.io/fields/file-input/Long Nguyen
ModeratorHi Victoria,
Which plugin you've updated? You can also try to re-save permalink settings (Post name) to flush the cache and re-check this isuse.
May 7, 2022 at 9:55 AM in reply to: ✅Adding a Post Thumbnail using Metabox Field on the Front End #35931Long Nguyen
ModeratorHi,
If you just want to use the field
single_imageon the frontend submission form and don't want to use it on the backend, you can set the field ID to_thumbnail_idto set it as a featured image, and no need to use the custom code to update the featured image. Read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#reorder-post-fieldsLong Nguyen
ModeratorHi Alisha,
Currently, there is no option to upgrade the license key. But you can contact us at https://metabox.io/contact/
our development team will help you to exchange the license.Long Nguyen
ModeratorHi Warren,
The Meta Box ID is the field group ID if you use the builder to create the custom fields. Screenshot https://monosnap.com/file/Rav02VuuBnPyZuAb3sY05sT36PpSiV
Long Nguyen
ModeratorHi Warren,
The field
image_selectdoes not support adding a text label under each image like that. I will inform the development team to consider supporting this case in future updates. By the way, you can try to create your own field type by following this documentation https://docs.metabox.io/creating-new-field-types/Long Nguyen
ModeratorHi Chris,
The buttons (arrows) are mostly controlled by your theme template, Meta Box does not handle this. You can try to contact your theme support to ask for help with this case.
Long Nguyen
ModeratorHi,
Can you please share your code that output the field value? I've run your code on my local site and use this code to output the field
postand the order of the cloneable field display as well on the frontend.$groups = mb_get_block_field( 'posts' ); foreach ( $groups as $group ) { $post_id = $group['highlighted_post']; echo get_the_title( $post_id ); echo "<br>"; } -
AuthorPosts