Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi guys,
Please update the new version of Meta Box AIO 1.13.13 to fix this issue.
Let me know how it goes.
Long Nguyen
ModeratorHi Peter,
It's the post status, a string from WordPress core. If it is translated to your language, you can change your site's default language in Settings > General > Site Language to get translated strings.
Find the translated strings here https://translate.wordpress.org/
Long Nguyen
ModeratorOk, let me know if you have any questions.
Long Nguyen
ModeratorHi,
WordPress only supports set a (default) page as the homepage. If you want to set a post as the homepage, please follow this topic https://wordpress.stackexchange.com/questions/42461/is-it-possible-to-use-a-single-custom-post-as-the-site-front-page
Long Nguyen
ModeratorHi Peter,
The extension MB Favorite Posts use Ajax to add posts to the user meta so when the cache plugin minifies/optimizes JavaScript loaded on your site, it might not work properly.
You can try to disable that option or contact the plugin support to ask for help in this case.
Refer to the documentation https://docs.metabox.io/extensions/mb-user-profile/#caching
Long Nguyen
ModeratorHi Andrea,
Thank you for getting in touch.
If this is the first time you use the Meta Box, I recommend following the documentation https://docs.metabox.io/.
On the doc of MB Admin Columns, you can see the setting
admin_columnsavailable when registering the field. So if you use the MB Builder to create custom fields, there is an option to enable the admin column for each field. Screenshot https://share.getcloudapp.com/d5uAYrRnLong Nguyen
ModeratorHi Lupescoto,
It is possible that the Elementor also format the date value. Please try to use the helper shortcode in that post without using Elementor and re-check this issue.
June 2, 2021 at 3:41 PM in reply to: ✅Issue with user custom filed and coditionnal metabox Location #28622Long Nguyen
ModeratorHi,
Can you please share some screenshots of the issue? And let me know how I can reproduce it.
Long Nguyen
ModeratorHi Artur,
Please share some screenshots when you edit the View and console tab of the browser. Follow the Debugging Information step here https://support.metabox.io/topic/how-to-create-a-new-topic/.
Long Nguyen
ModeratorHi,
To get users in View, you can use the WordPress function get_users() and follow the documentation to know how to run a PHP function via the proxy
mb
https://docs.metabox.io/extensions/mb-views/#running-php-functionsHere is the example code:
{% set args = { meta_key: "publish_account", meta_value: "yes" } %} {% set users = mb.get_users( args ) %} {% for user in users %} {% set user_id = user.ID %} <tr> <td>{{ user.display_name }}</td> <td>{{ mb.rwmb_meta( 'position', {object_type: 'user' }, user_id ) }}</td> </tr> {% endfor %}June 2, 2021 at 3:01 PM in reply to: ✅MetaBox.io on WordPress Dashboard's WordPress Events and News #28618Long Nguyen
ModeratorHi,
The development team has added a new filter to remove the Meta Box news on this commit. It will be included in the next update.
How to use: add this code to the file functions.php or use the plugin Code Snippets
add_filter( 'rwmb_dismiss_dashboard_widget', function() { if ( !current_user_can( 'administrator' ) ) { return true; } return false; } );Long Nguyen
ModeratorHi Greg,
That topic recommend using the field taxonomy_advanced instead of taxonomy. Can you please re-check it?
Long Nguyen
ModeratorHi,
Thanks for your feedback.
I will update the documentation to explain this case.
Long Nguyen
ModeratorHi,
The Meta Box core class hooks to the action
initwith the priority 20 after register the post type so the helper functionrwmb_meta()does not work. You can use the WordPress function get_option() to get the settings page value.June 1, 2021 at 10:39 PM in reply to: ✅MetaBox.io on WordPress Dashboard's WordPress Events and News #28596Long Nguyen
ModeratorHi,
Currently, there is no filter to remove the news of Meta Box. You can use the admin CSS code to hide them.
#dashboard_primary li.meta-box-news-item { display: none; }I will inform the development team to support removing Meta Box news in future updates.
-
AuthorPosts