Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Thank you for your feedback.
I've escalated the 403 error to the development team, it should be fixed as soon as possible.
Peter
ModeratorHello,
There could be an issue with the field setting
clonewhen registering custom fields on your site. Do you use the code to register custom fields? If yes, please share the code here, I will take a look.Peter
ModeratorHello Sridhar,
If you use the function rwmb_set_meta(), you should hook to the action
initwith a priority later than 20. Or use the WordPress function update_post_meta() to set the field value for the page.Peter
ModeratorHello,
You can create a new custom field
selectwith the field IDpage_templateto use the conditional logic. Then after saving the post, you can use the code to update the page template.
Please follow this article https://tommcfarlin.com/programmatically-set-a-wordpress-template/
and documentation https://docs.metabox.io/actions/rwmb-after-save-field/Peter
ModeratorHello,
I don't see you have an
addressfield for the map field. Do you use thelatfield as the address field?
Following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#address-fieldPeter
ModeratorHello Fabien,
The frontend submission is available for visitors to submit posts but only logged-in users can view their posts in the frontend dashboard.
Please read more in the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboardPeter
ModeratorHello Leora,
I think the issue occurs when you make a change to the field group and the post type is set back to Post by default, screenshot https://imgur.com/apNRYXJ
You can try to follow this tutorial to increase the PHP settingmax_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,
Currently, there isn't an option to use a single text field to paste Lat, Lng values for the map. You need to use two text fields: Lat and Lng.
Regarding the popup error, I don't see that issue on my demo site, screenshot https://imgur.com/LAfF0eE
When you change the pin on the map, the Lat and Lng values are updated. When you change the Lat and Lng values, the pin on the map is changed also. This feature is noted in the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#two-way-data-binding
January 29, 2024 at 9:18 PM in reply to: 'link' => 'none' does not work with fild type 'taxonomy' #44424Peter
ModeratorHello,
Thank you for your feedback.
I can see the issue on my demo site. I've escalated it to the development team to fix it in future updates.
Peter
ModeratorHello,
The frontend form doesn't support the field
page_templateas in the admin area. You should create another select field with the IDpage_templateto use the conditional logic in the frontend.January 28, 2024 at 11:15 PM in reply to: ✅How to add only1 checkbox for consent with 4 tabs just before the submit button? #44419Peter
ModeratorHello Eric,
I think you can add the consent checkbox field to a new field group and show it separately from the field group that has tabs. To show more field groups in the frontend, you can follow this format:
[mb_frontend_form id='tab-field-group-1,consent-field-group2' post_fields="title,content"]Peter
ModeratorHello,
The builder helps you to create the field, you still need to use the code to output the field value, and custom code to sort the value.
Peter
ModeratorHello Mathew,
You can use the time picker option
timeFormatand valuehh:mm TTto select and display the time format 12hr time.
Please read more about the time picker format here https://trentrichardson.com/examples/timepicker/#tp-formatting
Screenshot https://imgur.com/MurVogJPeter
ModeratorHello,
The image field value doesn't show in the field name like that. If you want to display it in the Gutenberg editor in the admin area, you can use a custom block. Please follow the documentation https://docs.metabox.io/extensions/mb-blocks/
Peter
ModeratorHello,
Unfortunately, the field
file_uploaddoesn't support that setting to display another thumbnail size. You can try to use the fieldimage_uploadto have that setting.
https://docs.metabox.io/fields/image-upload/ -
AuthorPosts