Forum Replies Created
-
AuthorPosts
-
March 30, 2024 at 10:44 AM in reply to: ✅Cannot Update CPT - Related to ACPT to MetaBox Transition #45067
Peter
ModeratorHello Keith,
Currently, there isn't an option to move post types ACPT to Meta Box, however, you can re-create a post type with the same slug when using Meta Box to manage the post type.
Regarding the error, please open all tabs or collapsible groups and recheck the required fields. Mostly, the issue is related to a required field that is not filled in.
Peter
ModeratorHello Nick,
Please add a helper shortcode to a post content, check the output value in the frontend, use the filter hook and see how it works. Following the documentation
https://docs.metabox.io/shortcode/Peter
ModeratorHello,
There are some updates that change the builder structure and the old JSON file might not work with the new version. Can you please share the JSON file here? I will check if there is something we can do on our side.
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.
-
AuthorPosts