Forum Replies Created
-
AuthorPosts
-
December 4, 2023 at 9:54 PM in reply to: ✅504 Gateway Time out on every update action on a cpt #44004
Peter
ModeratorHello,
1. You can enable WP debug and check the log if there is an error when updating a CPT post. Besides that, you can also deactivate all plugins and leave only Meta Box, MB plugins activated and switch to a default theme of WordPress and check this issue again.
2. The relationship data is stored in a custom table wp_mb_relationships. You can contact the export plugin support if they can export data from the custom table.
Peter
ModeratorHello,
Do you add the field ID prefix to the field group settings? If yes, the field ID is different from
post_title. You can see it works properly on my end https://drive.google.com/file/d/15lRWTxyC-b397Xubx_6RTmWUK5OiIkL0/view?usp=sharingPeter
ModeratorThanks for your feedback.
I will inform the development team to consider supporting this feature in future updates.
Peter
ModeratorHello Roel,
The group field save value (including subfield values) in the database is a serialized array with the meta key group ID, therefore some features of the single field do not work when it is a subfield in a group. Please use the top field (outside of a group) in this case.
Peter
ModeratorHello Bellul,
What is the field type of the field
magazine_no? If it is taxonomy, I don't see that error message on my site. You can try to add the snippet code to a template file in the theme and recheck this issue.Peter
ModeratorHello Roel,
You can create a
textfield with the IDpost_title, mark it Required and remove thepost_fieldsfrom the frontend shortcode to use the custom field post title.
Please follow the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#field-orderPeter
ModeratorHello,
You can check the fan_profile is not empty before setting the args. For example:
{% if post.fan_profile is not empty %} {% set spending_args = { post_type: 'fanspending', name: post.fan_profile, numberposts: 1 } %} ... {% endif %}December 1, 2023 at 10:14 PM in reply to: ✅datepicker not being translated when using mb_frontend_form #43981Peter
ModeratorHello,
Thanks for your feedback. I don't see it working in both cases. I've escalated this issue to the development team to fix it.
Peter
ModeratorHello,
Thanks for your feedback. I will inform the development team to consider supporting this case in future updates.
December 1, 2023 at 8:59 PM in reply to: Autocomplete field - show all values from predefined list when click #43978Peter
ModeratorHello,
I'm afraid that there isn't an option to show all values when clicking on the autocomplete field, it's not how it works. I think you can use the select field to show all values from the list.
Peter
ModeratorHello Lee,
Please share the register form shortcode that you use on your site. I tested this again on my demo site and see it still works as well. Following the documentation https://docs.metabox.io/extensions/mb-user-profile/#registration-form
[mb_user_profile_register role='editor']Peter
ModeratorHello,
I see the issue. You have two group fields with the same ID on a page, so the value of the last group will be saved and the value will display in all group fields after saving. It is expected behavior.
On the same page, each field needs to have a unique ID. It is noted in the documentation
https://docs.metabox.io/field-settings/Field ID. Required and must be unique. It will be used as meta_key when saving to the database. Use only numbers, letters, and underscores (and rarely dashes).Peter
ModeratorHello,
Using the double curly brackets to output the value, don't use them when you use a variable.
{% set spending_args = { post_type: 'fanspending', name: post.fan_profile, numberposts: 1 } %}Peter
ModeratorHello,
Yes, I add a group field "addresses" with the same ID in two field groups (meta box). Please export your field groups to JSON files and share them here. I will import them to my site and check this issue.
Here are field groups on my site.
https://drive.google.com/file/d/1mDJORfNw9bJLcP6N2aBroji3UdHP_ioO/view?usp=sharing
https://drive.google.com/file/d/10pZmv9m5_kv1tHC06doQkVDLe67nTTTA/view?usp=sharingPeter
ModeratorHello Cedric,
You should select the Meta Box Field under the Site section and select the field on a settings page. Screenshot https://imgur.com/kqtat8j
-
AuthorPosts