Forum Replies Created
-
AuthorPosts
-
January 3, 2022 at 9:42 AM in reply to: ✅Add Gutenberg to a custom post made by another plugin. #32962
Long Nguyen
ModeratorHi Lee,
Enable the Block Editor (Gutenberg) for a custom post type made by another plugin is beyond the scope support of Meta Box. You can contact that plugin support to ask for help with this question.
Or follow this topic to enable it by coding https://wordpress.stackexchange.com/questions/324221/enable-gutenberg-on-custom-post-type
January 2, 2022 at 4:51 PM in reply to: ✅Using Custom url field in Custom Post Type for redirect with Javascript / Jquery #32960Long Nguyen
ModeratorHi,
In case of using Oxygen Builder, please reach to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://support.metabox.io/topic/support-policy/January 1, 2022 at 10:39 PM in reply to: ✅Using Custom url field in Custom Post Type for redirect with Javascript / Jquery #32957Long Nguyen
ModeratorHi Leo,
Where did you add the PHP code to show the field value?
<?php echo rwmb_meta('extrn_url'); ?>You should add it to the post template of the theme to show field value on the single post.
Refer to this documentation https://docs.metabox.io/displaying-fields/#using-codeJanuary 1, 2022 at 9:45 AM in reply to: ✅Using the value of a switch field in a twig if statement #32954Long Nguyen
ModeratorHi Kyle,
The field
switchreturns the valueOn/Off, please compare it with that value.{% if multiple_switch == "On" %}Long Nguyen
ModeratorHi,
In case of using Oxygen Builder, please reach to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://support.metabox.io/topic/support-policy/Long Nguyen
ModeratorHi,
The key is
palettesin the Builder, here is the screenshot https://imgur.com/P6EfPVGLong Nguyen
ModeratorHi,
Use the field
selectjust to check the post titles if they work with this field. Can you please do a test?December 31, 2021 at 3:09 PM in reply to: ✅Any way to save Post ID in a custom table when also a Parent? #32946Long Nguyen
ModeratorHi Jeremy,
If the setting
parentis set totrue, the field supports saving the post parent for the post object and does not save the post meta (even with the default tablewp_postmeta).
Please read more here https://developer.wordpress.org/reference/classes/wp_post/December 31, 2021 at 12:34 PM in reply to: ✅Using Custom url field in Custom Post Type for redirect with Javascript / Jquery #32945Long Nguyen
ModeratorHi,
It looks like you are using the PHP code in the JavaScript file (.js). Please refer to this topic to know how to write PHP and JS code in WordPress.
https://stackoverflow.com/questions/47117329/adding-javascript-to-php-wordpressLong Nguyen
ModeratorHi,
The
rangefield only supports saving the integer number step. You can read more here https://www.php.net/manual/en/function.intval.phpI will inform the development team to consider supporting the float number step for this field.
Long Nguyen
ModeratorHi,
If you want to run the shortcode in the WYSIWYG content, please follow this documentation https://docs.metabox.io/fields/wysiwyg/#template-usage
You can also use the helper shortcode to render the content and shortcode inside. For example
[rwmb_meta id="wysiwyg_field_id" object_id="15"]Long Nguyen
ModeratorHi,
Thanks for your feedback.
I've escalated this issue to the development team to fix it in the next update.
December 30, 2021 at 10:11 PM in reply to: Some relationship titles missing from select query #32936Long Nguyen
ModeratorHi,
The field type
select_advancedonly supports showing 10 items then showing more when scrolling down. Get the details here https://docs.metabox.io/fields/post/#ajax-loadPlease try to use the field type
selectand let me know if the post title (Doctor) is still missing.'to' => [ 'object_type' => 'post', 'post_type' => LOCATION_TYPE, 'meta_box' => [ 'title' => 'Doctors at Location', ], 'field' => [ 'field_type' => 'select' ] ],Long Nguyen
ModeratorHi Sam,
The feature Pay-to-Post is only implemented for the plugin AutoListings. It is not available in the plugin MB Frontend Submission. I will inform the development team to consider implementing this feature for MB Frontend Submission in future updates.
Long Nguyen
ModeratorHi Kirb,
Please use the property
post_titleof the object post<h2 class="services-list--item__title">{{ post.post_title }}</h2>Refer to this documentation https://docs.metabox.io/extensions/mb-views/#custom-query
-
AuthorPosts