Forum Replies Created
-
AuthorPosts
-
December 18, 2022 at 9:49 PM in reply to: Changing the title and sending the list through email #39909
Peter
ModeratorHello,
If you don't want to use a translation plugin, you can override the template of the MB Favorite Posts plugin by creating a folder name
mb-favorite-postsin the theme/child theme folder. Then copy the fileposts.phpfrom the folder/wp-content/plugins/mb-favorite-posts/views/to themb-favorite-postsfolder and change the textFavorite Poststhere.Peter
ModeratorHello,
Thanks for reaching out. Meta Box does not support an image hotspot field like that. I will inform the development team to explore the possibility.
Peter
ModeratorHello,
If you are using MB Core, please update it to the latest version 1.4.8 to fix the issue. Let me know how it goes.
December 17, 2022 at 11:14 PM in reply to: Critical error when updating to latest version of Meta Box AIO #39901Peter
Moderator@Ambr: There could be something wrong when you use the code to output the field value or use the Meta Box template. Follow the error log
RWMB_Meta_Box_Registry->make('About Us')
I've accessed the database and deleted a page About Us and a Meta Box template name About Us then I can use the last version of Meta Box. Can you please check it on your live site?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 }} -
AuthorPosts