Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
This extension is free and available on Github, if you want to use the older version, please find it here https://github.com/wpmetabox/mb-elementor-integrator/tags
Long Nguyen
ModeratorHi,
It looks like Kadence search the custom fields in the database (meta key in the table wp_postmeta) and they are still available in the selection of Kadence block.
Meta Box, Toolset or WordPress itself does not have an option to delete the field ID and value in the database. You can use this plugin to delete the custom fields in the database https://wordpress.org/plugins/bulk-delete/.Or use the function delete_post_meta(), and refer to this topic https://wordpress.stackexchange.com/questions/246684/remove-post-meta-keys.
Long Nguyen
ModeratorHi,
This option does not work with the Block editor. So if you are using the Classic editor, please enable it for all custom fields.
Read more on the documentation https://docs.metabox.io/field-settings/July 13, 2022 at 9:47 PM in reply to: Auto fill not working on one site even if I used it successfully on other sites #36981Long Nguyen
ModeratorHi,
Please share your site credentials via this contact form https://metabox.io/contact/
I will help you to investigate the issue. Thanks.July 13, 2022 at 9:38 PM in reply to: ✅Temp Local dev license info or how to transfer a Metabox instal to local servers #36980Long Nguyen
ModeratorHi,
Thanks for reaching out.
Our license system does not count the testing site with domain .local or .test so you can activate the license on the testing site as well.
Regarding the MB Group, the Oxygen and Bricks teams have created the integration plugins with Meta Box and support it officially. Please contact their support to ask for help with this question.
July 13, 2022 at 9:13 PM in reply to: ✅Icons instead of values to indicate a confirmed account as a user admin column #36979Long Nguyen
ModeratorHi,
The admin column uses the helper function
rwmb_the_valueto show the field value. You can use this filter hook to change the field value when showing on the backend. For example:add_filter( 'rwmb_the_value', function( $output, $field, $args, $object_id ) { $value = rwmb_meta( 'confirm_code', $args, $object_id ); if( is_admin() && $field['id'] == 'confirm_code') { if( $value ) { $output = '<img src="https://picsum.photos/200/300?random=1" alt="Image" width="32" height="32">'; } else { $output = 'icon here'; } } return $output; }, 11, 4 );Read more on the documentation https://docs.metabox.io/filters/#rwmb_the_value
Long Nguyen
ModeratorHi,
1. It looks like
daysOfWeekDisabledis an attribute of the Bootstrap jQuery library, not an attribute of the DatePicker Widget of jQuery library that Meta Box used.
https://getdatepicker.com/4/Options/#daysofweekdisabled
https://api.jqueryui.com/datepicker/Please read more on the documentation https://docs.metabox.io/fields/date/
2. Yes, it is possible. Please follow this documentation to use a form hook to send an email to the user after submitting the form https://docs.metabox.io/extensions/mb-frontend-submission/#form-hooks
Long Nguyen
ModeratorHi,
Thank you for your feedback.
It's not a bug of the
imagefield, the value saved to the database is the file URL. We also have a note for this case in the documentation when you save the image to the custom folder. Please read more here https://docs.metabox.io/fields/image/#upload-to-a-custom-folderLong Nguyen
ModeratorHi Nathan,
The best way to use a field value in JavaScript code is to use the WordPress function
wp_localize_script(), then you can access the value via JS variable. Please read more on the documentation https://developer.wordpress.org/reference/functions/wp_localize_script/
and refer to this article https://metabox.io/display-all-listings-on-a-map/?swcfpc=1Long Nguyen
ModeratorHi,
The cloneable field will have a least 1 item to fill the value. It is not possible to remove all items.
July 13, 2022 at 12:23 PM in reply to: using php to display a list of custom posts and custom fields #36964Long Nguyen
ModeratorHi,
To show a list of a post type, please use the custom query with WP Query and add the helper function
rwmb_meta()in the loop to get the field value. For example:// The Query $the_query = new WP_Query( $args ); // The Loop if ( $the_query->have_posts() ) { echo '<ul>'; while ( $the_query->have_posts() ) { $the_query->the_post(); echo '<li>' . get_the_title() . '</li>'; echo rwmb_meta( 'course', '', get_the_ID() ); } echo '</ul>'; } wp_reset_postdata();Read more on the documentation https://developer.wordpress.org/reference/classes/wp_query/
Long Nguyen
ModeratorHi,
The passing variable
$post_idis the ID of the current editing post that you add the block to the post content.If you want to get the selection post ID (field value), please use the function
mb_get_block_field( 'field_id )Read more on the documentation https://docs.metabox.io/extensions/mb-blocks/#render_callback
Long Nguyen
ModeratorHi,
Thanks for your suggestion.
I will inform the development team to consider supporting the type for the submit button. Meantime, you can use this selector to style the button.
.rwmb-form-submit .rwmb-button { properties here }Long Nguyen
ModeratorHi,
I will inform the development team to consider supporting this case in future updates.
Long Nguyen
ModeratorHi,
Yes, the fields in the Insert Field tab are some basic and registered custom fields for objects (post, term, user) and the settings page. If you want to work with PHP and WordPress functions for some advanced cases, you also need to have basic knowledge about Twig code.
Refer to the documentation https://docs.metabox.io/extensions/mb-views/#twig
https://docs.metabox.io/extensions/mb-views/#running-php-functions -
AuthorPosts