Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi there,
Thank you for your feedback.
We are developing a module to manage the license key and activated domain. It will be available in future updates.
Long Nguyen
ModeratorHi Julian,
Thank you for reaching out.
I think you can create a settings page and set the max clone there. Before register, the meta box and custom fields for the post, get the max clone number and assign it to the field.
In this way, you do not need to remember the post ID to get the field value. For example:
add_filter( 'rwmb_meta_boxes', function( $meta_boxes ) { $settings = get_option('option_name'); $max_clone = $settings['max_clone_id']; $meta_boxes[] = [ 'title' => 'Test Meta Box', 'fields' => [ [ 'type' => 'text', 'id' => 'name', 'name' => 'Name', 'clone' => true, 'max_clone' => $max_clone, ], ], ]; return $meta_boxes; } );April 22, 2021 at 10:40 AM in reply to: ✅Display the DATE field like 'saturday 10 April 2021' #27494Long Nguyen
ModeratorHi,
Thank you for reaching out.
You can use the helper function rwmb_the_value() to show the format date in the Oxygen builder. Get more details on the documentation
https://docs.metabox.io/fields/date/#template-usage
https://www.php.net/manual/en/datetime.format.phpApril 22, 2021 at 10:31 AM in reply to: ✅mb-frontend-submission > missing PO file for translation #27492Long Nguyen
ModeratorHi,
Thank you for getting in touch.
You can use the plugin Loco Translate to create the PO file, it will help you to scan the translatable text.
Regarding the file .zip of all extensions, you can login to your account and download them as well. Screenshot https://share.getcloudapp.com/o0u6Z5Nm
https://metabox.io/my-account/Long Nguyen
ModeratorHi Mike,
Thank you for getting in touch.
Can you please share some screenshots of the Users page and MB Builder? Or share the PHP code that creates the field, I will help you to check it.
Long Nguyen
ModeratorHi Igor,
If you are using the JavaScript Validation https://docs.metabox.io/validation/, you can change the required text with the setting
messagesIf you are using the HTML validation (required) https://docs.metabox.io/custom-attributes/, please follow this topic to know how to change the default required text https://stackoverflow.com/questions/10753881/changing-the-language-of-error-message-in-required-field-in-html5-contact-form/10754847
Long Nguyen
ModeratorHi,
Thank you for your feedback.
I'm going to escalate this issue to the development team to fix it in future updates.
April 22, 2021 at 9:56 AM in reply to: ✅Adding archive data from other custom post type single post using shortcode #27488Long Nguyen
ModeratorHi,
Yes, it is possible. But you need to use the custom query by using the function
get_posts()to show the custom post type info on another post type page.Get more details here
https://developer.wordpress.org/reference/functions/get_posts/
https://docs.metabox.io/extensions/mb-views/#running-php-functionsRefer to this topic https://support.metabox.io/topic/custom-post-type-query-with-twig-post-link/
April 22, 2021 at 9:50 AM in reply to: ✅'Only the post content area' setting does not seem to work on Archives #27486Long Nguyen
ModeratorHi,
For the next step of troubleshooting the issue, please share your site credentials via this contact form https://metabox.io/contact/, I will take a closer look.
Long Nguyen
ModeratorHi,
Thank you for reaching out.
If a meta box is assigned to shows on the settings page, it does not show on the post type. You need to create another meta box then assign it to the post type (remember to remove the settings page).
April 22, 2021 at 9:39 AM in reply to: ✅Post field with select advanced - search doesn't work well #27484Long Nguyen
ModeratorHi,
Thank you for your feedback.
I'm going to escalate the issue to the development team to check it and inform you later.
Long Nguyen
ModeratorHi,
Please try to deactivate all plugins except Meta Box, MB extensions and switch to the default theme of WordPress (Twenty TwentyOne) then re-check the issue.
Get more details on the step Debugging Information https://support.metabox.io/topic/how-to-create-a-new-topic/
Let me know how it goes.
Long Nguyen
ModeratorHi Morgan,
Thank you for reaching out.
Please go to User > User Role Editor > Select the user role and post type > Make sure all capabilities checked and click Update. Screenshot https://share.getcloudapp.com/2NuwvkR7
Long Nguyen
ModeratorHi,
You can use the helper function rwmb_meta() to get the field value of a post via the proxy
mb.. See my short screen record https://share.getcloudapp.com/mXupJRX8Get more details here https://docs.metabox.io/extensions/mb-views/#running-php-functions
April 21, 2021 at 4:43 PM in reply to: ✅'Only the post content area' setting does not seem to work on Archives #27452Long Nguyen
ModeratorHi Henri,
Can you please switch to another theme (Twenty TwentyOne) and re-check the issue?
-
AuthorPosts