Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I don't fully understand the issue with taxonomy slugs. Can you please share full screenshots of slugs, not just a piece of it so I can see the screens you are editing?
Thank you.
August 13, 2025 at 8:46 PM in reply to: Envira Gallery Pagination Not Working in Metabox Custom Field #48699Peter
ModeratorHello,
You can use the shortcode to output the field value in the builder https://docs.metabox.io/shortcode/
or use the PHP code to output the field value in the theme template https://docs.metabox.io/displaying-fields-with-code/August 13, 2025 at 8:40 PM in reply to: Cloneable Group Data Not Displaying in Backend Edit Screen #48698Peter
ModeratorHello Marcio,
Thanks for reaching out.
Please share the video, export the field group and share the JSON file with me. I will import the field group to my site, try to reproduce and investigate the issue.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello,
You can use the proxy
mb.to call the PHP function in the View template. For example:{% set term_id = mb.get_queried_object_id() %} {% set value = mb.rwmb_meta( 'wysiwyg001', {object_type: 'term'}, term_id ) %} {{ value }}Refer to this topic https://support.metabox.io/topic/how-to-get-field-value-in-the-settings-page/#post-46109
and documentation https://docs.metabox.io/extensions/mb-views/#running-php-functionsAugust 11, 2025 at 11:40 PM in reply to: Relationships not showing in translated posts with WPML #48687Peter
ModeratorHello,
I'm afraid that there isn't a way to have the same or translation related post assigned to the translation post automatically. You can contact WPML support and ask them for more information.
Thank you.
Peter
ModeratorHello Jacob,
If you have a refund request, please contact us here https://metabox.io/contact/
our team will get in touch with you shortly.Thank you.
August 10, 2025 at 9:07 PM in reply to: Relationships not showing in translated posts with WPML #48683Peter
ModeratorHello,
I'm not sure about the Advanced Translation Editor, but the relationship is not a custom field so it might not work with that editor. You can manually select the translation relation post when using the WordPress editor.
August 8, 2025 at 11:32 PM in reply to: Relationships not showing in translated posts with WPML #48680Peter
ModeratorHello,
Thanks for reaching out.
Relationship is not a field to use the translation setting "Copy once" with WPML. It is a separate meta box on the post editing page. When you edit or create a translation post, you can select the translation relationship post as well. Please check this screenshot https://ibb.co/sXhKvdg
Peter
ModeratorHello,
Thanks for reaching out.
Do you mean the field Before text, After text? I see you are selecting Meta Box fields for them and what is the issue there? Please share a screen record so I can understand it better.
Peter
ModeratorHello Katrin,
Thanks for reaching out.
It isn't possible to move the relationship meta box to a cloneable field or a field group. If you want to use a custom field, please use the
postfield instead of relationship.
Following the documentation https://docs.metabox.io/fields/post/Peter
ModeratorHello,
Yes, correct. You need to remove the attribute
edit="true"because the Ajax feature will be disabled.Allow users to edit the post after submitting. true or false (default). If true then ajax submission will be disabled.It is noted in the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#adding-the-submission-form
August 7, 2025 at 11:08 PM in reply to: ℹ️Issue with Plural Name When Creating Post Types in Meta Box IO #48672Peter
ModeratorHello,
You are correct. The translation of some labels for the pt-BR language is available in the plugin Meta Box AIO. Please remove the folder
wp-content/plugins/meta-box-aio/languages/mb-custom-post-typeto remove the tag%nome%in the label when creating a new CPT.Let me know how it goes.
Peter
ModeratorHello,
If you use the View editor to create the template, you can try this example code
{% set current_page_id = mb.get_the_ID() %} [mb_frontend_form post_fields='title,content' ajax="true" redirect="{{ mb.get_permalink( current_page_id ) }}"]it works correctly on my site to redirect the current page after submitting the frontend form.
Peter
ModeratorHello Nick,
If you use the frontend validation, the form won't be saved if the condition is not met and the form will be reset to the previous saved data. I see it is an expected behavior. Please refer to this topic https://support.metabox.io/topic/back-end-validation-removes-unsaved-field-values
Peter
ModeratorHello Nick,
Thanks for the details. I can reproduce the issue on the demo site. It has been escalated to the development team and we will fix it as soon as possible.
-
AuthorPosts