Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Thank you for reaching out.
Meta Box will help you to allow the user to submit the post and custom fields on the frontend. But there is no option/extension that supports charging a fee per post submitted. Please refer to this topic https://support.metabox.io/topic/pay-to-post/
Long Nguyen
ModeratorHi Topher,
Thank you for your feedback.
Do you mean to export the JSON file after creating a field group? Or Get PHP Code immediately when creating a field group?
Please let me know how to reproduce the issue.
June 18, 2021 at 10:21 PM in reply to: Creating a custom field populate with gravity forms and Gutenberg not working #28992Long Nguyen
ModeratorHi,
The plugin uses AJAX to call custom fields and the post ID is not passed to the block. The custom field type to get GF forms in a block might not work.
I recommend using the custom field type in a regular meta box, not in a block to select GF forms and save data.
June 18, 2021 at 9:44 PM in reply to: ✅Google maps fields is not getting the inserted key and inputs an error #28990Long Nguyen
ModeratorHi Milen,
I see that you add an API key to the field but the map on the post loads another API key. It is possible another plugin also uses the Google API key. Please try to deactivate all plugins except Meta Box and Meta Box AIO then re-check this issue.
Long Nguyen
ModeratorHi Quint,
You need to have a custom table to save the data. Create a table:
- By coding: follow this documentation https://docs.metabox.io/extensions/mb-custom-table/#creating-custom-tables
- By using the Builder: check the optionCreate table automatically, screenshot https://share.getcloudapp.com/qGu5E4WOLong Nguyen
ModeratorHi James,
If the WP Webhooks plugin works with post meta (meta key and meta value), it will update the field value based on the field ID. Follow on this topic https://wordpress.org/support/topic/write-to-custom-fields/
There is no prebuilt option to check the unique value of subfields per group.
Long Nguyen
ModeratorHi,
You can use this PHP code to allow uploading SVG file on your site
function cc_mime_types($mimes) { $mimes['svg'] = 'image/svg+xml'; return $mimes; } add_filter('upload_mimes', 'cc_mime_types');Get more details on this topic https://wordpress.stackexchange.com/questions/313951/how-to-upload-svg-in-wordpress-4-9-8
Long Nguyen
ModeratorHi,
Meta Box has not had a calculation field yet. If you are familiar with coding, you can follow this topic to do the same function with some JavaScript code https://support.metabox.io/topic/calculation-in-fields-success-error-messages-jquery-version/.
Long Nguyen
ModeratorHi,
I think you can use the action hook
rwmb_frontend_after_processto update the field value after submitting the form.Use the function update_post_meta() to update the field value and refer to this documentation https://docs.metabox.io/extensions/mb-frontend-submission/#form-actions
June 18, 2021 at 9:42 AM in reply to: How to configure timezone for timestamp in datetime field? #28979Long Nguyen
ModeratorHi,
We can just select the timezone of the site in Admin Dashboard > Settings > General. Then use the WordPress function date_i18n() to show the local timezone. For example:
$date_time = rwmb_meta( 'datetime' ); echo date_i18n( 'F d, Y H:i', $date_time );Long Nguyen
ModeratorHi,
Thank you for getting in touch.
Please follow the Debugging Information step here https://support.metabox.io/topic/how-to-create-a-new-topic/
and let me know if there is an error message.June 18, 2021 at 9:17 AM in reply to: Expected Behavior on Incorrect Keys during POST requests #28977Long Nguyen
ModeratorHi Austin,
Thank you for your feedback.
I will inform the development team to check this case and get back to you if I have any information.
Long Nguyen
ModeratorHi,
Thank you for your feedback.
I've escalated this issue to the development team to fix it in the next update.
June 17, 2021 at 9:58 PM in reply to: Custom Woo product filed not showing in the product list #28968Long Nguyen
ModeratorHi,
You need to add the column ID to show the custom column after/before, for example:
title. Screenshot https://share.getcloudapp.com/z8uOPKnvThe filterable option only supports the field type taxonomy, please read more here https://docs.metabox.io/extensions/mb-admin-columns/#3-advanced-configuration
Long Nguyen
ModeratorHi Lee,
The key
_index_overview_rhs_highlights_imageis used to track the unique file. Please don't use it to get the field value, just the field ID.$files = $highlight['overview_rhs_highlights_image'];To get the file info in a group, please follow this documentation https://docs.metabox.io/extensions/meta-box-group/#sub-field-values
-
AuthorPosts