Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
You can use the
<audio>HTML tag to embed sound content on your page. Read more on this documentation https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio.Long Nguyen
ModeratorHi,
Thank you for getting in touch.
You can create a dropdown select with the
select,select_advancedfield. Then wrap the output value with your HTML code.Get more details on the documentation
https://docs.metabox.io/fields/select/
https://docs.metabox.io/fields/select-advanced/Or you can output more fields (auto-populate) with the extension MB Geolocation, please read more here https://docs.metabox.io/extensions/meta-box-geolocation/.
Long Nguyen
ModeratorHi,
Please try again with this code.
function your_prefix_function_name( $meta_boxes ) { if( isset( $_GET['post_type'] ) && $_GET['post_type'] == 'my_post_type' ) { return; } $meta_boxes[] = [ ... ]; return $meta_boxes; }April 2, 2021 at 9:37 AM in reply to: ✅Display Taxonomy Featured Image for Single Product Page #26895Long Nguyen
ModeratorHi Kywong,
Thank you for getting in touch.
I'm afraid that it's not possible, the Elementor Pro plugin has been changed the source code of dynamic tags. We will try to create an update for the extension MB Elementor Integrator as soon as possible. For now, please try to get the term meta by coding and follow this documentation https://docs.metabox.io/extensions/mb-term-meta/.
Long Nguyen
ModeratorHi,
Thank you for getting in touch.
Meta Box supports showing the fields on the frontend as it works on the backend through the MB Frontend Submission shortcodes or MB User Profile shortcodes. You can read more on the documentation
https://docs.metabox.io/extensions/mb-frontend-submission/
https://docs.metabox.io/extensions/mb-user-profile/For your custom forms, I'm afraid that there are no options to do that. It's beyond the scope of the plugin support.
April 1, 2021 at 8:39 PM in reply to: ✅Is it possible to prevent edits of previously submitted clones? #26873Long Nguyen
ModeratorHi Martin,
Thank you for your suggestion.
It's not possible to disable previous clones or hide them. You can just collapse the clone to scroll down easier.
I will inform the development team to explore the possibility of this case.
Long Nguyen
ModeratorHi Yumikom,
Please update the newest version of MB Builder 4.1.2 or MB AIO 1.13.7 to fix the issue. Let me know how it goes.
Long Nguyen
ModeratorHi,
A new version of MB Views 1.8.3 and MB AIO 1.13.6 has been released. Can you please update it and re-check the issue?
Long Nguyen
ModeratorHi,
The development team has pushed a commit to fix this issue. It will be included in the next update.
April 1, 2021 at 12:25 PM in reply to: ✅What is the best way to change the default iframe size when using oEmbed? #26858Long Nguyen
ModeratorHi,
If you embed a Vimeo video, I think you can use the field custom HTML then add all responsive code generated by Vimeo. Screenshot https://share.getcloudapp.com/yAuDo87K.
Long Nguyen
ModeratorHi,
It's a premium plugin so please share a copy of this plugin via this contact form https://metabox.io/contact/. I will help you to check it.
Long Nguyen
ModeratorHi Sridhar,
Thank you for getting in touch.
Did you miss the prefix
settings_of the field ID? Just likerwmb_meta( 'settings_branding', ['object_type' => 'setting'], 'my_options' )If it still does not work, please share the code that creates the field, I will help you to check it.
Long Nguyen
ModeratorThanks for your feedback.
I will inform the development team to consider bringing it back on the new Builder.
Long Nguyen
ModeratorHi,
You can check the post type with the function get_post_type() before registering the meta box. For example:
function your_prefix_function_name( $meta_boxes ) { if( 'my_post_type' == get_post_type() ) { return; } $meta_boxes[] = [ ... ]; return $meta_boxes; }Long Nguyen
ModeratorGlad to see it works. Let me know if you have any questions.
-
AuthorPosts