Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Can you please clarify the question? I do not understand it clearly.
If a field works in the backend, it also works in the form on the frontend.
June 17, 2021 at 9:05 PM in reply to: ✅Meta value not stored in the custom table and postmeta, but displaying content #28965Long Nguyen
ModeratorHi,
Please share your site credentials via this contact form https://metabox.io/contact/, I will help you to check the issue on your site.
Long Nguyen
ModeratorFollow on this topic https://support.metabox.io/topic/no-posts-showing-for-logged-in-author-with-posts/
Long Nguyen
ModeratorHi Clay,
If you want to limit submitted posts by something, please follow this topic on WP.org https://wordpress.org/support/topic/limit-post-creation-count-by-author-or-role/
and refer to the extension's filter https://docs.metabox.io/extensions/mb-frontend-submission/#post-data-filters
Long Nguyen
ModeratorHi,
It might relate to the language or a plugin activated on your site. Please go to Settings > General > Site language: English, deactivate all plugins except Meta Box, and re-check the issue.
You can also share the JS options of the
datefield, I will test the options on my end.June 16, 2021 at 10:02 PM in reply to: ✅Meta value not stored in the custom table and postmeta, but displaying content #28944Long Nguyen
ModeratorHi,
It is possible that the PHP settings on your host/server are low so the custom field values are not saved. Please follow this article to know how to fix it https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/
Let me know how it goes.
Long Nguyen
ModeratorHi Clay,
Just to clarify that the attribute
post_typeneeds to add to the shortcode frontend submission, not the shortcode frontend dashboard.[mb_frontend_form id="meta-box-id" post_fields="title,content" post_type="individual"]The page ID is required to add to the frontend dashboard shortcode, it will get the shortcode info from the frontend submission page to show the corresponding post type.
You can use the PHP code to pass the page ID dynamically.
$form = '[mb_frontend_dashboard edit_page="$page_id"'; echo do_shortcode( $form );Long Nguyen
ModeratorHi ac,
Meta Box has an extension MB Settings Page which supports creating a settings page on your site. Please read more on the documentation https://docs.metabox.io/extensions/mb-settings-page/
June 16, 2021 at 2:19 PM in reply to: ✅Meta value not stored in the custom table and postmeta, but displaying content #28934Long Nguyen
ModeratorHi,
Can you please share the code that creates the custom table and custom fields? Please make sure that the column keys have to match your custom fields’ IDs.
June 16, 2021 at 2:14 PM in reply to: ✅_ms_snippets - does this table in database belong to Metabox? #28933Long Nguyen
ModeratorHi,
Yes, right. Only the extension MB Relationships needs to store data in a new table. And be careful with the custom table you might create with the extension MB Custom Table.
Long Nguyen
ModeratorHi Paul,
You can refer to this topic to style the value of the list in one line https://support.metabox.io/topic/how-to-display-select-advanced-as-text-instead-of-bulletpoints/
Long Nguyen
ModeratorHi Nicholas,
When editing or creating a user from the frontend, you can follow this documentation to replace the default user first name and last name fields and save data to the custom table https://docs.metabox.io/extensions/mb-user-profile/#edit-default-fields
June 16, 2021 at 12:09 AM in reply to: How to display "Select Advanced" as text instead of bulletpoints #28920Long Nguyen
ModeratorHi,
You can style the list values by some CSS code to display them inline. For example:
ul { list-style-type: none; } ul li { display: inline-block; }June 15, 2021 at 11:40 PM in reply to: ✅_ms_snippets - does this table in database belong to Metabox? #28918Long Nguyen
ModeratorHi Peter,
This table does not belong to Meta Box. It looks like the table created by the plugin Code Snippets.
Long Nguyen
ModeratorHi,
Please follow this documentation to know how to use the custom query https://docs.metabox.io/extensions/mb-views/#custom-query
To get the post URL in the custom query, you can use the WordPress function get_the_permalink().
-
AuthorPosts