Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Sorry, I do not understand your question clearly, can you please clarify it? Does the code work on your end to get the term meta?
December 17, 2022 at 5:41 PM in reply to: Second validation message with rwmb_frontend_after_display_confirmation #39889Peter
ModeratorHello,
That Ajax issue has been fixed a few days ago and will be included in the next release of MB Frontend Submission. Sorry for the slow update because we have a list of issues with a higher priority to do.
December 17, 2022 at 5:33 PM in reply to: ✅Image and File advanced JSON error if field is left blank #39888Peter
ModeratorHello,
The problem happens when the line below is added to the field file_advanced settings
'column' => 'column-1',Refer to the documentation https://docs.metabox.io/extensions/meta-box-columns/
Did you register the columns under the meta box settings?December 17, 2022 at 5:19 PM in reply to: Taxonomy according through the post type not working #39887Peter
ModeratorHello,
Because after publishing the post, there is no parameter post_type in the URL and the code will not work correctly. After publishing the post, there is the post ID in the URL and you can get the post type by using the WordPress function get_post_type().
For example:
$prefix = ''; $post_type = $_GET['post_type']; $taxonomy = ''; $placehold = ''; if( empty( $post_type ) ) { $post_id = null; if ( isset( $_GET['post'] ) ) { $post_id = intval( $_GET['post'] ); } elseif ( isset( $_POST['post_ID'] ) ) { $post_id = intval( $_POST['post_ID'] ); } $post_type = get_post_type( $post_id ); }Peter
ModeratorHello,
Thanks for sharing the solution.
I also would like to say that, in case of using Oxygen Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/December 17, 2022 at 5:05 PM in reply to: wpd bzw. query vars --> order by --> MB Custom Table #39885Peter
ModeratorHello,
Thank you but there is nothing we can do from our side at the filter hook of the Bricks builder, they should take a look at their filter support. It is also beyond our scope of support which you can see here https://support.metabox.io/topic/support-policy/
Thanks for your understanding and patience.
Peter
ModeratorHello Amy,
Thanks for reaching out.
Can you please let me know the whole scenario and the code to register the fields, update the post meta ...
Did you try to just update the post meta with a single value like this?
update_post_meta( $post_id, 'field_id', 'testvalue' )You can try to deactivate all plugins and leave only Meta Box, MB extensions and activate a standard theme of WordPress to check this issue again.
Peter
ModeratorHello Amy,
I will close this topic and reply here https://support.metabox.io/topic/why-wouldnt-this-update-the-data/
December 16, 2022 at 11:32 PM in reply to: Metabox taxonomy field not populating actual taxonomy field #39872Peter
ModeratorHello,
If there are two taxonomy fields on the editing page, one is the default of WordPress, one is a custom field of Meta Box, it will not work correctly.
If you want to use the taxonomy field of Meta Box, please turn off the taxonomy field of WordPress by editing the custom taxonomy > Advanced tab > Disable the option "Show on edit page".
Peter
ModeratorHello,
Please update the plugin Meta Box AIO to the latest version 1.16.8 to fix this issue. Let me know how it goes.
Peter
ModeratorHello,
Please try to change the code to get the term meta to this one
{% set term_meta = mb.rwmb_meta( 'field_id', {object_type: 'term'}, post_term.term_id ) %}then output it
{{ term_meta }}Peter
ModeratorHello,
Can you please let me know how to launch the field group on the front-end? Do you mean to use the frontend submission shortcode to display the custom fields?
December 16, 2022 at 11:12 PM in reply to: I use textarea to put "javascript/jquery" syntax can not be displayed normally #39867Peter
ModeratorHello,
If you want to add the script code to the textarea field, you need to bypass the sanitization. Please read more on the documentation https://docs.metabox.io/sanitization/
December 16, 2022 at 11:08 PM in reply to: My code stopped working to get user ID of a user field #39865Peter
ModeratorHello Yasmine,
Please make sure you have the latest version of Meta Box 5.6.14 and Meta Box AIO 1.16.8 and check this issue again. If it does not help, please share your site credentials via this contact form https://metabox.io/contact/
with the details of the issue. I will take a closer look.December 16, 2022 at 11:05 PM in reply to: Meta Box - Elementor Integrator - issues with single_image #39863Peter
ModeratorHello,
This issue has been fixed in this commit https://github.com/wpmetabox/mb-elementor-integrator/pull/23/commits/0413ec1fab0936bb562d59632923ae5e8ab18f77
you can apply the changes on your site while waiting for a new update.
-
AuthorPosts