Forum Replies Created
-
AuthorPosts
-
March 13, 2023 at 7:03 PM in reply to: Add option ajax.delay into Select2 select_advanced & taxonomy #40983
Peter
ModeratorHello,
I'm asking the development team if there is a way to use the ajax delay with an object field (post/term) and get back to you later.
Thanks.
Peter
ModeratorHello Scott,
Actually, the block category is saved, you can check it when editing the post but somehow the selected category is not displayed after saving the field group. I've escalated this issue to the development team to fix it in the next update. Thanks.
Peter
ModeratorHello there,
Yes, it is possible to create a registration form with MB Frontend Submission. But you will need to create some custom code to process the data input and create a user from the given data. Please read more on the documentation https://developer.wordpress.org/reference/functions/wp_create_user/
https://docs.metabox.io/extensions/mb-frontend-submission/#form-hooksOr using the standard feature of the plugin MB User Profile, which has a built-in registration form with a shortcode. Please read more here https://docs.metabox.io/extensions/mb-user-profile/
Peter
ModeratorHello there,
Thanks for your feedback. I also see that issue on my end, it shouldn't be a expected behavior. I've escalated this issue to the development team to fix it in the next update.
Peter
ModeratorHello there,
Can you please share the PHP code generated from those field groups on your site? Please use this tool to share the code https://pastebin.com/
You can also try to change the field ID todog_name1and see if it helps. Refer to the documentation to get PHP code https://docs.metabox.io/extensions/meta-box-builder/#getting-php-codePeter
ModeratorHello Jean,
You can set the editor option
quicktagstofalseto remove the Text tab in the WYSIWYG field. If you are using the Meta Box builder, please check this screenshot https://monosnap.com/file/fYqCyD7ERGP6FZG6HC7ve6VFpP1benand read more on the documentation https://docs.metabox.io/fields/wysiwyg/#settings
Peter
ModeratorHello Jean,
You can try to use a field
custom_htmlorheadingin a field group to make a difference from each other. Please read more on the documentation
https://docs.metabox.io/fields/custom-html/
https://docs.metabox.io/fields/heading/Peter
ModeratorHello,
Currently, there is no option to add the placeholder to the search box. The placeholder field setting supports displaying the text before selecting the value as in your screenshot. I will inform the development team to consider supporting this feature in future updates. Thanks.
Peter
ModeratorHello Sean,
You can use the FacetWP to filter the post by custom fields created with Meta Box, but it works with the top field only. For the subfields in a group, the filter does not work. So for the product variation in the series https://metabox.io/series/product-variations/, it's not possible.
Please read more on the documentation https://docs.metabox.io/extensions/meta-box-group/
March 11, 2023 at 9:04 AM in reply to: How do I display an image custom field on Author pages? #40953Peter
ModeratorHello,
Can you please let me know which image field type you are using? You can try to use the field single_image, and use the helper shortcode [rwmb_meta] to display the image field. Please read more on the documentation
https://docs.metabox.io/fields/single-image/
https://docs.metabox.io/shortcode/Peter
ModeratorHello,
Thanks for your additional information.
I've escalated this issue to the development team to fix it in the next update. Currently, it might not affect any function of the Meta Box plugins on your site.
March 10, 2023 at 10:35 PM in reply to: ✅Populate Select Advanced Field With Data From WP_Query #40947Peter
ModeratorHello,
If you can create an ajax call to get the query data, please append the value to the option list by using jQuery. The [options] field setting is loaded on page load so if you put your code there, it will not work as expected. Please refer to this topic https://stackoverflow.com/questions/17384705/updating-list-of-select-options-using-jquery-and-ajax
March 10, 2023 at 10:21 PM in reply to: Can't erase COLOR input content even with keyboard DELETE KEY #40946Peter
ModeratorHello,
Thank you for your feedback and share the solution.
Currently, the mode hex should work as the default setting. I've escalated this issue to the development team to fix it in the next update.
Peter
ModeratorHello,
You should use the
$fieldvariable to set the field setting instead of mapping variable$f. The correct code should be like thisadd_filter( 'rwmb_normalize_group_id_field', function( $field ) { foreach($field['fields'] as $key => $f) { if ($f['id'] === 'text_id') { $field['fields'][$key]['readonly'] = true; } } return $field; } );March 10, 2023 at 6:48 PM in reply to: Beaver Builder image gallery connection to Metabox field #40938Peter
ModeratorHello,
Currently, it does not work with the slideshow or gallery module. This feature is in our development queue and we will work on this in the next update or so.
-
AuthorPosts