Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Sherwin,
Not yet. Two actions: edit the file and delete it are enough for basic behavior. Can you please share your thoughts?
June 3, 2021 at 7:43 PM in reply to: ✅Add an iframe embed code in a user custom field, display via shortcode in post #28681Long Nguyen
ModeratorHi Lucas,
The text field has the default sanitization callback sanitize_text_field which does not allow any tags.
You can bypass this sanitization by using setting
'sanitize_callback' => 'none'Get more details on this documentation https://docs.metabox.io/sanitization/
June 3, 2021 at 6:29 PM in reply to: ✅Having trouble displaying relationships with admin columns pro #28679Long Nguyen
ModeratorHi Jonathan,
MB Core also includes the extension MB Admin Columns which helps you to show the relationships in admin columns, does not need to use other plugins.
I will check the integration plugin Meta Box - Admin Columns Integrator and get back to you later.
Long Nguyen
ModeratorHi,
Thank you for your feedback.
This feature is not available. I will inform the development team to consider adding it to the roadmap.
Long Nguyen
ModeratorHi Quint,
What is your code that you are trying to do? Here is the example code on your case.
add_action( 'rwmb_MetaBoxID_after_save_post', 'update_post_title' ); function update_post_title( $post_id ) { // Get the field value $firstname = rwmb_meta( 'firstname', ['storage_type' => 'custom_table', 'table' => 'wpml_health_form'] ); $lastname = rwmb_meta( 'lastname', ['storage_type' => 'custom_table', 'table' => 'wpml_health_form'] ); // Preprare update post $my_post = array( 'ID' => $post_id, 'post_title' => $firstname . ' ' . $lastname, ); wp_update_post( $my_post ); }Long Nguyen
ModeratorHi Kara,
The HTML5 email field works like a text field with validation. So it does not make sense if you use the email field and remove the validation, just change it back to a text field.
Or you can use the text field with pattern to validate input strings, read more here https://stackoverflow.com/questions/5601647/html5-email-input-pattern-attribute
Long Nguyen
ModeratorHi,
The problem was the file name case-sensitive, which breaks the Composer's PSR-4 autoload
src/processor.php=>src/Processor.phpLong Nguyen
ModeratorHi Zenjukai,
The archive page of the post type Animal on your site is
http:localhost/animal/. The slug/animals/is a single page. Can you please re-check it?Long Nguyen
ModeratorHi Yumiko,
The plugin TinyMCE Templates has no update for 4 years, looks like the author dropped it to ask him to make it compatible with the WYSIWYG field. Meta Box also does not have any options to insert templates like that but it's a good idea to develop. I will inform the development team to explore the possibility.
Long Nguyen
ModeratorHi,
Thanks for your feedback.
I will inform the development team to add the user loop to Insert Field items.
Long Nguyen
ModeratorHi,
I've tried to make a test case to reproduce the issue but no luck:
- Create a block with MB Builder on the site A
- Access to PHP MyAdmin and export database of site A
- Import it to site B and replace the URL
- The block on site B still works as well.If it is possible, please share your site credentials via this contact form https://metabox.io/contact/. I will try to import your site data to my local site and check the issue.
Long Nguyen
ModeratorHi,
This issue has been fixed in the new version of Meta Box AIO 1.13.13, please update it.
Long Nguyen
ModeratorHi,
This issue has been fixed in the new version of Meta Box AIO 1.13.13, please update it.
Long Nguyen
Moderator@hazmi @iulia-savin18gmail-com the root problem comes from the extension MB Columns and it also has been fixed in the new version 1.2.11.
Long Nguyen
ModeratorHi guys,
Please update the new version of Meta Box AIO 1.13.13 to fix this issue.
Let me know how it goes.
-
AuthorPosts