Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
I'm not able to reproduce the issue on my end. Please try to deactivate all plugins except Meta Box and MB AIO, switch to the default theme of WordPress Twenty Twenty, change the content of the .htaccess file to basic https://wordpress.org/support/article/htaccess/ then check the issue again.
Long Nguyen
ModeratorHi Toni,
Sub-fields in a group have different IDs (HTML attribute
id), the format is {group_id}_{field_id}. Assume yourgroupfield id isgroup_date, change the selector in the JavaScript code to:$('#group_date_date_to_text').val(startDate.val());Long Nguyen
ModeratorHi,
The field
posthelps you to save post IDs as a post meta then you can follow the template usage to show posts on the frontend. It just likes the related post.Because each page has different anchors so you should create links in the current page manually.
Long Nguyen
ModeratorHi,
The setting
upload_dironly available for the fieldfile. I'm going to create a feature request to support this setting for other upload fields.Long Nguyen
ModeratorHi,
The extension MB Admin Columns also supports to show a filter by taxonomy in the admin post list table. Please follow this documentation for more information https://docs.metabox.io/extensions/mb-admin-columns/#3-advanced-configuration.
Long Nguyen
ModeratorHi,
I do not see the issue when viewing your site, see my screen record https://share.getcloudapp.com/xQuA2qGk.
Can you please confirm it works?
Long Nguyen
ModeratorHi,
The file saved in the custom folder won't show on the Media Library. We also note about this case in the documentation.
Unlike the normal case, where files are added to the WordPress Media Library, files uploaded to custom folders are not available in the Media Library. Thus, the data saved in the custom fields is file URL, not attachment ID.Long Nguyen
ModeratorHi Toni,
The field
datedoes not support adding the minDate base on another fielddatevalue. I'm going to create a feature request for the developer team to support this case.Regarding the text field is populated by the value of a
datefield's value, you can use some simple JavaScript code.start_dateanddate_to_textare the field IDs.add_action( 'admin_footer', function() { ?> <script type="text/javascript"> jQuery(document).ready(function($) { $('body').on('change', '#start_date', function() { var startDate = $('#start_date'); $('#date_to_text').val(startDate.val()); }); }); </script> <?php } );See the screen record https://share.getcloudapp.com/ApuLbJqN.
Long Nguyen
ModeratorHi,
Something went wrong with the post type slug
video, I just change tomy-videoand save permalink settings again to make it works. Check on this link https://staging-proterra.temp513.kinsta.cloud/my-video/test-my-video/.November 10, 2020 at 10:45 AM in reply to: ✅Alert on critical error on website after installation of Meta Box AIO #22773Long Nguyen
ModeratorHi,
I'm not able to reproduce the issue on my end. It might relate to the cache, clear it or reinstall the plugin will solve the issue.
Long Nguyen
ModeratorHi,
If you use the MB Builder, please add the path of the folder. You can create a file test.php in the folder
invoicesfor example and add this code to the file test.php<?php echo __DIR__;Run the file in the URL http://site.com/wp-content/invoices/test.php. It will display the path to the folder, such as
/var/www/wp-content/invoices, then add the path of the folder to the custom attribute. See my screenshot https://share.getcloudapp.com/OAuJevlg.Long Nguyen
ModeratorHi,
The field file support uploading to the custom folder, please follow this documentation for more information https://docs.metabox.io/fields/file/#upload-to-custom-folder.
Long Nguyen
ModeratorHi Max,
The form has been fixed, please send the information.
Long Nguyen
ModeratorHi there,
Thank you for paying attention to the Meta Box plugin.
We created Meta Box in 2010 to help developers to create custom meta boxes faster and easier. Now, Meta Box is not only a library with a powerful API for custom fields but also a framework that helps you control your data the way you want and trusted by over 500.000 users.
Nowadays, WordPress is the most popular CMS and used by 35% (and getting more) websites over the world. I think 5 or 10 years later, Meta Box still goes along with WordPress and custom fields which is the main part of WordPress.
We also create more releases/extensions to compatible with the new editor of WordPress Gutenberg such as MB Blocks.
So, in general, you could use the Meta Box plugin to create business websites with WordPress for the long term and get supported by us at any time if you need it.
Long Nguyen
ModeratorHi Benjamin,
The extension MB Builder is very easy to use. It helps you to drag and drop your way to create the custom meta boxes and custom fields in WordPress you want without touching the code.
Follow the documentation for more information https://docs.metabox.io/extensions/meta-box-builder/.
-
AuthorPosts