Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Yes, you can import the data to the default table
wp_postmetathen move it to the custom table. But please notice that WPAI can work with some simple field types of Meta Box liketext,email,number,single_image... It does not work with complicated fields likegroup,cloneable, fields with setting'multiple' => true(image_advanced, image ...)Long Nguyen
ModeratorHi,
It's so weird. Please try to deactivate all plugins except Meta Box, MB AIO, switch to the standard theme of WordPress (Twenty TwentyOne), and re-check this issue.
You can also follow this article to increase the PHP setting
max_input_vars
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Let me know how it goes.
Long Nguyen
ModeratorHi,
The frontend submission form does not bring all options when editing posts on the backend to the frontend. You can create your own code to do that and refer to the form's hook https://docs.metabox.io/extensions/mb-frontend-submission/#hooks-1
Long Nguyen
ModeratorHi,
You can switch to the tab Text of the editor field to remove the HTML tags. Refer to this article https://www.wpbeginner.com/beginners-guide/how-to-copy-and-paste-into-wordpress/
Long Nguyen
ModeratorHi,
Please remove all the single quotes (or any special characters) from the field IDs and re-check this issue. For example:
primary_care_physician's_nameit should be
primary_care_physicians_nameFollow our recommendation about field ID:
Field ID. Required and must be unique. It will be used as meta_key when saving to the database. Use only numbers, letters, and underscores (and rarely dashes).
https://docs.metabox.io/field-settings/#generalNovember 16, 2021 at 10:52 AM in reply to: ✅How to remove the slug from the permalink of a CPT #31956Long Nguyen
ModeratorHi,
Meta Box does not support removing the CPT slug from the URL. You can use the code to remove post type slug from the permalink. Please follow these topics for more information
https://wordpress.org/support/topic/removing-slug-in-url-from-custom-post-type/
https://stackoverflow.com/questions/41230665/how-to-remove-taxonomy-slug-from-custom-post-type-urlLong Nguyen
ModeratorHi Aharon,
Meta Box does not support saving the empty value to the database, custom table or default table
wp_postmeta. If you set the default value for the field, it will save that value to the database even the meta box/field is hidden. You can use the extension MB Include Exclude to prevent saving the default value.November 16, 2021 at 10:28 AM in reply to: How to showcase a bunch of photos from uploading multiple on the settings page? #31952Long Nguyen
ModeratorHi,
I do not see the field with ID
logosin your code. Can you please try to use theimage_advancedfield with IDgallery_pictures?The helper function should be
$companylogos = rwmb_meta( 'settings_gallery_pictures', ['object_type' => 'setting'], 'Company');Long Nguyen
ModeratorHi,
Yes, you should renew the Developer Bundle one. Please read more here https://metabox.io/pricing/
Long Nguyen
ModeratorHi AnLip,
The issue of MB Frontend Dashboard not working with Oxygen Builder has been fixed in the new version of MB Frontend Submission 3.1.5 or MB AIO 1.15.2.
Please update the extension and re-check it.
Long Nguyen
ModeratorHi Daniel,
If the subscription is active, FastSpring will help you to renew the license automatically. If not, you can go to the My Account page to renew the license.
https://metabox.io/my-account/Long Nguyen
ModeratorHi,
I think there is a special character in a/some field ID. Please create custom fields again, don't publish, and click on the button "Get PHP Code" then share it here. I will help you to check the issue.
Some screenshots would be appreciated.
Long Nguyen
ModeratorHi,
Yes, of course. Meta Box can work with all available post types even it is created by the code or another plugin. Please read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#shortcode-attributes
For example
[mb_frontend_form post_fields="title,content" post_type="your-cpt-slug"]Long Nguyen
ModeratorHi,
Yes, it is possible. If you are familiar with coding, you can customize the dashboard by copying the content of the file
wp-content/plugins/mb-favorite-posts/views/posts.phpto a page template and add or remove a column as well. It's just a block of code to show favorite posts.Long Nguyen
ModeratorHi Marcel,
Thank you for your feedback.
An SQL query of this extension should have a placeholder. I will inform the development team to fix this issue in the next update.
-
AuthorPosts