Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Jordan,
Supporting the custom plugin or custom code is beyond our scope of support. Please read more about our support policy here https://support.metabox.io/topic/support-policy/
You can contact an expert developer and ask them to check the 302 redirection for you when using Meta Box. Besides that, we offer a customization service with an extra fee. If you are interested in this service, please contact us here https://metabox.io/contact/
Peter
ModeratorHello,
So if you use the frontend submission shortcode, does the warning message
Warning : Undefined array key "label_title" in ...still display?Regarding the post draft, it is the post status. The post will be saved to the status (draft, publish, private ...) which is set by the shortcode attribute
post_status. Please follow the documentation to get more details https://docs.metabox.io/extensions/mb-frontend-submission/#adding-the-submission-formPeter
ModeratorHello,
The callback function requires to have a return state and value to display the message in the correct position (field appearance). So it is a solution and good to go.
Peter
ModeratorHello,
As I mentioned above, the frontend form doesn't have any limitations or restrictions. You can use the action hook
rwmb_frontend_before_processto add your condition before processing the form. Please follow the documentation to get more details https://docs.metabox.io/extensions/mb-frontend-submission/#form-hooksPeter
ModeratorHello Nick,
I don't see it takes the default WordPress post ID instead of the custom model ID. However, if somehow the first custom model entry ID 1 was deleted, the ID will start from 2 and so on. The WordPress post ID also works like that.
You can create a new post, delete it and create another post to see how the ID is generated.January 22, 2025 at 10:06 PM in reply to: Adjusting Width of Admin Filter and Translating Text in Relation Field #47500Peter
ModeratorHello,
Currently, only text in the English language will be displayed. I will inform the development team to improve this feature in future updates.
Thank you.
Peter
ModeratorHello Nick,
It looks like the ID 1 was deleted in the database. I test to create the first entry of the custom model, the ID is started from 1 as well. But if I delete the entry in the database and submit a new entry, it will start from 2 as it is.
I'm discussing this case with the development team and get back to you later.January 21, 2025 at 12:46 PM in reply to: ℹ️empy first array value for cloneable group when using rwmb_frontend_validate #47483Peter
ModeratorIf you open the Console tab and check the HTML elements, you can see the first entry is the template that will be used for other clone entries. Screenshot https://imgur.com/CwZGTSs
Peter
ModeratorHello Michele,
Please try to contact us via this email [email protected], I will help you check the issue.
Peter
ModeratorHello Julian,
Thanks for reaching out.
I'm afraid that Meta Box doesn't support an option to validate that the end date is after the start date or any specific case. You can create your own Javascript code to validate the input date, refer to this topic https://stackoverflow.com/questions/68092463/notify-when-the-end-date-is-earlier-than-start-date
Peter
ModeratorHello Tanja,
Thank you for your feedback.
I've escalated this issue to the development team to check the warning message when using the Bricks element and frontend form. Meanwhile, you can try to use the frontend form shortcode and remove the title, content from
post_fieldsattribute. Following the documentation
https://docs.metabox.io/extensions/mb-frontend-submission/#adding-the-submission-formJanuary 20, 2025 at 11:07 PM in reply to: ✅'Switch' Element Cannot be Defaulted to "On" within MB Group "Clones" #47473Peter
ModeratorHello,
If you want to show the ON switch as the default value for the cloneable entry, please enable the setting "Clone default value" for the group field. Please read more about the cloneable feature in the documentation https://docs.metabox.io/cloning-fields/
and check this screen record https://imgur.com/vO3SxT6Peter
ModeratorHello Simon,
You can try to follow this tutorial to increase the PHP setting
max_input_varsto fix the issue
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Let me know how it goes.
Peter
ModeratorHello Nick,
This issue has been fixed in this commit https://github.com/wpmetabox/meta-box/commit/263fd9a7f13e79dfdb57a3a6e1538b642f83246a
it will be included in the next version of Meta Box.Thank you.
January 19, 2025 at 11:19 PM in reply to: ✅Issues with Post Title Generation Using Custom Table Data #47468Peter
ModeratorHello,
I think that the callback function runs at the action hook
save_postwon't get the correct field value because custom field values are saved after saving the post. I suggest you:1. Use the helper function rwmb_meta() to get the field value that is saved to the custom table
https://docs.metabox.io/extensions/mb-custom-table/#getting-field-value2. Or use the action hook
rwmb_{$field_group_id}_after_save_postto ensure all field values are saved.
https://docs.metabox.io/actions/rwmb-after-save-post/
Reference https://support.metabox.io/topic/adding-metabox-field-data-to-the-post-title/3. Or get the field value from the global variable $_POST.
I hope that helps.
-
AuthorPosts