Forum Replies Created
-
AuthorPosts
-
Peter
Moderator@JJCI: the plugin Meta Box AIO is available for download if you have the Ultimate Bundle or Lifetime Bundle license. If you have the Basic Bundle, please use the plugin MB Core which includes 12 Pro extensions. Please read more here https://metabox.io/pricing/
December 19, 2022 at 10:25 PM in reply to: ✅Missing permissions if use generated php code from AIO #39921Peter
ModeratorHello,
The setting
'capability_type' => 'custom'is supported when you use the builder. If you generate the PHP code to register the post type, you need to add the capabilities manually. Please read more on the documentation https://developer.wordpress.org/reference/functions/register_post_type/#capability_typePeter
ModeratorHello,
If the users do not have the administrator role, they will not be able to edit the field group to add/remove the custom fields. Or you can enable the Meta Box menu for a/some specific users, please refer to this topic https://support.metabox.io/topic/hiding-meta-box-plugin-from-wordpress-dashboard-menu-for-non-admins/
December 18, 2022 at 9:49 PM in reply to: Changing the title and sending the list through email #39909Peter
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/
-
AuthorPosts