Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi John,
Please open the Console tab of the Inspect tool and check if there is an error message. Get more details on the Debugging Information step here https://support.metabox.io/topic/how-to-create-a-new-topic/
October 7, 2021 at 3:54 PM in reply to: Linking between gravity forms registration and custom user meta #31208Long Nguyen
ModeratorHi,
I'm not sure what the data type of GF image field saved to the database (ID or something else). You can try to use the field
single_imagefirst because it works like the featured image of the post. Please get more details on this documentation
https://docs.metabox.io/fields/single-image/#dataRefer to this topic https://support.metabox.io/topic/gravity-forms-submissions-not-updating-user-meta/
Long Nguyen
ModeratorHi John,
It is possible. You can create a
selectorradiofield to allow users to select the post status. Then update the post status by using PHP function. Please refer to these topics
https://support.metabox.io/topic/controlling-post-status-in-front-end-dashboard/
https://support.metabox.io/topic/selecting-post-formats/Long Nguyen
ModeratorHi John,
Thanks for your feedback.
Currently, the dashboard page does not support showing pagination. I will inform the development team to consider supporting this in future updates.
Long Nguyen
ModeratorHi John,
The option
Query argsin the Builder does not support passing a callback function. You will need to use the PHP code to assign a PHP function to an argument.Please follow the sample code here https://docs.metabox.io/fields/taxonomy/#limit-the-number-of-terms-for-pagination
Long Nguyen
ModeratorHi,
Can you please share some screenshots when you use the Avada theme to show the
single_imagefield? If it works with the default featured image of the post, it will work with thesingle_imagefield.October 6, 2021 at 9:05 PM in reply to: ✅On update, custom fields group reverts by itself to standard post type. #31189Long Nguyen
ModeratorHi,
This issue is so weird. Please create a staging site and share the staging credentials via this contact form. I will help you to check this issue.
https://wordpress.org/plugins/wp-staging/Long Nguyen
ModeratorHi,
I think Anh Tran has told you to use the query string to edit a post if the user capability/role can edit it, such as
editor.You can edit the archive page then add a button with a query string in the loop
http://siteurl.com/frontend-submit-page-slug/?rwmb_frontend_field_post_id=123there is no prebuilt shortcode that supports this case. You need to create a custom code to do that.
Get more details on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#dynamic-population
Long Nguyen
ModeratorHi,
The option notification on this topic is enabled. If you still do not receive the email notification, please let me know. I will inform the development team to re-check it.
Long Nguyen
ModeratorHi Toni,
Please share some screenshots when editing View and turn on WP_DEBUG to check the error log when you get the blank screen.
Long Nguyen
ModeratorHi Bob,
As you can see on the documentation after the user create a meta box (field group) with custom fields. They will have to create a page and paste the frontend shortcode with meta box ID to show the form on the frontend.
[mb_frontend_form id="skeleton-meta-box-id" post_fields="title,content"]Long Nguyen
ModeratorHi,
If you want to save the
wysiwygfield value as post content, please follow this tutorial https://docs.metabox.io/save-wysiwyg-content-post-content/Long Nguyen
ModeratorHi Kyle,
You can use the helper function rwmb_meta() and pass the ID of the page/post as the third parameter to get
textfield value of that post/page.rwmb_meta( 'text_fieldID', '', 12345 );If you use the Render Code area in the Builder, call a PHP function via the proxy
mb. Please read more here https://docs.metabox.io/extensions/mb-views/#running-php-functionsLong Nguyen
ModeratorHi,
The function
date()takes the second parameter in timestamp format. If thedatefield on your end is saved intimestampformat, no need to use the functionstrtotime().You can read more here https://docs.metabox.io/fields/date/#template-usage
October 6, 2021 at 8:50 AM in reply to: ✅On update, custom fields group reverts by itself to standard post type. #31171Long Nguyen
ModeratorHi Cédric,
It is possible there is a problem with the post type or the Builder. Please follow the Debugging Information step and let me know how it goes https://support.metabox.io/topic/how-to-create-a-new-topic/.
Regarding the meta value, it does not save the post type, only the field value. The meta key and value associate with the post by post ID. And you can check the post type in the table
wp_postsby post ID. -
AuthorPosts