Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Thanks for your feedback.
I've escalated this issue to the development team to fix it in the next update.
December 9, 2022 at 9:11 AM in reply to: ✅How to add overlay image and icon on oEmbed YouTube video? #39627Peter
ModeratorHello,
This is beyond the scope support of Meta Box, if you are familiar with coding, you can follow this topic on StackOverFlow https://stackoverflow.com/questions/13725683/how-to-add-a-splash-screen-placeholder-image-for-a-youtube-video
or this article https://seehowsupport.com/wordpress/content-editor/add-your-own-thumbnail-to-youtube-videos/Hope that helps.
Peter
ModeratorHello,
Can you please update MB Views 1.11.4 or Meta Box AIO 1.16.7 to the latest version to fix this issue?
Let me know how it goes.Peter
ModeratorHello Kevin,
If you are using the object field like
post, user, termand use the field typeselect_advanced, you can set the settingajaxtofalseto disable ajax load. By default, the ajax is set to true to load 10 items only.
Please read more on the documentation https://docs.metabox.io/fields/post/#enabledisable-ajax-requests
and screenshot https://monosnap.com/file/uMokUpsHYrJVVMBntBDji1P9jLu1ucPeter
ModeratorHello Erik,
Can you please update Meta Box to the latest version 5.6.13 to see if it fixes the issue?
December 9, 2022 at 8:46 AM in reply to: Taxonomy filterable dropdown selection without adding metabox to edit screen? #39623Peter
ModeratorHello Doug,
The admin column of Meta Box might not work the same as the default column of WordPress. I will inform the development team to consider supporting filter by taxonomy on the backend.
Regarding the meta box do not display on the edit page, can you please share some screenshots about that? Or check in the Preferences box when editing the page.
https://wordpress.org/support/article/preferences-overview/Peter
ModeratorHi Mark,
The staging or development domain should not contain "www". Can you please try it out?
The only difference is the staging site is not counted as a live site when activating the license key. Other features are the same as a live site.
Peter
ModeratorHello,
This issue has been fixed in this commit https://github.com/wpmetabox/meta-box/commit/7ca1d85f7a685cdfabd85bdb65691b638ab4c747
You can try to apply the code on your site while waiting for the new update of Meta Box.Thanks.
December 7, 2022 at 11:28 PM in reply to: How to add Draft button and status of Post on Frontend Submission? #39596Peter
ModeratorHello Keith,
The extension MB Frontend Submission does not support a button to change the post status. With some custom code, you can create a custom field and set the post status on your own. Please read more on this topic https://support.metabox.io/topic/controlling-post-status-in-front-end-dashboard
Peter
ModeratorHello,
The variable
$GET['field_id1']helps you to get the field value when comparing in the condition, so replacing it means nothing.
If you are not familiar with coding, I recommend contacting an expert developer to help you in this case.Thanks.
December 7, 2022 at 11:07 PM in reply to: ✅Elementor Theme Builder > MB Group Skin Does Not Exist #39594Peter
ModeratorHello Bret,
Can you please share some screenshots or a screen record of the issue on your site? Please make sure that you have the latest version of Meta Box 5.6.12 and Meta Box AIO 1.16.7.
Peter
ModeratorHello,
I do not see you use the custom variable in the view content. Can you please read my replies above again?
https://support.metabox.io/topic/mb-view-gridbuilder-card/#post-39436
https://support.metabox.io/topic/mb-view-gridbuilder-card/#post-39459View content:
{{ mb.rwmb_meta( 'mg_projet_localisation', '', post_id ) }}
(missing the close parenthesis)If it still does not work, I recommend using PHP code instead of Twig code (View) to display the post meta in the card. For example:
function render_custom_field_email_block() { // Object can be a post, term or user. $object = wpgb_get_object(); // If this is not a post (you may change this condition for user or term). if ( ! isset( $object->post_type ) ) { return; } // You have to change "custom_field_name" by yours. echo rwmb_meta( 'mg_projet_localisation', '', $object->ID ) ; //pass the ID from object above }Peter
ModeratorHello Christian,
There is no option to change this title, but you can add this custom CSS code to Appearance > Customize > Additional CSS, to hide in ton the frontend.
.mbup-form .rwmb-meta-box > h2 { display: none; }Peter
ModeratorHello Chris,
If you want to display a subfield Google map in MB Views, please create a custom function to add the API key to the function render_map() like the code above then add the function to the view editor to render the map. In the view editor, it is not supported.
December 7, 2022 at 10:05 PM in reply to: ✅Store Advanced Image IDs as Variable, Pass to Shortcode Arg as Array #39587Peter
ModeratorHello Jason,
The helper function rwmb_ will return a useful array of image info
So if you want to get the image ID only, please consider using the WordPress function
get_post_meta(), then use thejoin()function to convert it to a string and pass it to the shortcode attribute. For example:$p_photos = get_post_meta( get_the_ID(), 'my_field_id' ) ; $p_photos = join( ',', $p_photos ); -
AuthorPosts