Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
It's a code editor that allows you to add and execute the code in a specific template. Please follow the documentation step by step to use the View editor
https://docs.metabox.io/extensions/mb-views/Peter
ModeratorHello,
Please try to reproduce the issue on your staging site and share the credentials, I will take a look.
Regarding the field UI settings, I will inform the development team to consider supporting that feature in future updates.
Peter
ModeratorHello Lambert,
You should use the PHP function rwmb_meta() to output the field value in the post template. Please follow the documentation https://docs.metabox.io/displaying-fields-with-code/
Or use a page builder plugin to output field value in the builder https://docs.metabox.io/tutorials/builders/
March 28, 2024 at 10:37 PM in reply to: Taxonomy (Author) fields not showing on Custom Post Type preview #45053Peter
ModeratorHello,
The author won't show because you are in the main query of the post so the post properties will work like post.ID, post.title ...
If you want to get the taxonomy and custom fields (term meta) of the current post, you should use the WordPress function get_the_terms() to get the author and helper function
rwmb_meta()to get the author custom fields.Please follow the documentation
https://docs.metabox.io/extensions/mb-views/#main-query
https://docs.metabox.io/extensions/mb-views/#running-php-functions
https://docs.metabox.io/extensions/mb-term-meta/Peter
ModeratorHello Eugene,
It works well on my site. You can see the max_clone works when editing/creating a
posterpost, notticketpost.March 28, 2024 at 9:58 PM in reply to: ✅How to send an email with the labels and values of a cpt occurrence? #45051Peter
ModeratorHello Eddy,
There isn't an option or a built-in function to do so. You can refer to the frontend hook documentation to create custom code on your own to send an email after submitting the form
https://docs.metabox.io/extensions/mb-frontend-submission/#form-hooksPeter
ModeratorHello,
I've escalated this issue to the development team to check the issue with the checkbox tree field. I will get back to you later.
March 28, 2024 at 9:49 PM in reply to: Custom User Register Form - Errors Upon Validation Checks #45049Peter
ModeratorHello,
Please share your site credentials by submitting this form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello,
I saw that issue yesterday on my local site but now, somehow, it works properly. Maybe resetting the PHP or MySQL service and clear the cache fixes the issue.
If it doesn't help, please share your site admin account via this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello Nick,
They are different filter hooks
rwmb_field_metaandrender_blockso the priority doesn't mean in this case. The priority only works when you add two callback functions to a filter hook. For example:add_filter( 'rwmb_field_meta', [ $this, 'metaboxfiltertest' ], 15, 3);add_filter( 'rwmb_field_meta', [ $this, 'cusomfiltertest' ], 10, 3);Please follow the documentation https://developer.wordpress.org/reference/functions/add_filter/
Peter
ModeratorHello,
MB Beaver Themer Integrator doesn't support an option to append the field value to the URL. You will need to create some custom code on your own to achieve the goal.
If you cannot complete the task, we offer a customization service with an extra fee. Please contact us here with your details https://metabox.io/contact/March 27, 2024 at 8:48 PM in reply to: Validation Bug with Cloned Items - Metabox Group + Frontend Form #45033Peter
ModeratorHello,
I can reproduce the issue on my demo site. I've escalated this issue to the development team to fix it in future updates.
Thank you.
Peter
ModeratorHello,
You can use the filter hook
rwmb_post_choice_labelto change the post title in the dropdown. And notice that it will apply to allpostfields on your site. Following the documentation
https://docs.metabox.io/fields/post/#filtersPeter
ModeratorHello,
I see the CSS selector works as well on my demo site, screenshots https://imgur.com/a/jnISBGb
.my-group-class .rwmb-button.button-primary.add-clone { color: red; }March 26, 2024 at 10:32 PM in reply to: There is no way to make a Group of Custom Fields Clonable/ with GUI in settings? #45016Peter
ModeratorHello,
There is an option to make the
groupfield cloneable in the builder (GUI), screenshot https://imgur.com/CqQSxPKThis option is applied for the field only, not the field group (meta box).
-
AuthorPosts