Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Johannes,
Thank you for your feedback.
I've escalated this issue to the development team to fix it in the next update of the block plugin.
July 19, 2024 at 6:47 AM in reply to: White screen of death on some pages with views after updating #45941Peter
ModeratorHello,
If you deactivate WP Gridbuilder, and enable Views extension, do you see the white screen (error) when editing/viewing those pages? There could be an error between two plugins after you update Meta Box AIO to the new version.
Peter
ModeratorHello Lukas,
If you have an account-related question, please contact us here https://metabox.io/contact/
we will help you cancel your subscription.Peter
ModeratorHello,
Thank you for your feedback.
I've escalated this issue to the development team, it will be fixed as soon as possible.
Peter
ModeratorHello Brad,
There isn't an option to hide the button to edit the field group when editing a post. You can use the custom CSS code to hide it
.mbb-settings { display: none !important; }Following this article to apply custom CSS in the admin area https://css-tricks.com/snippets/wordpress/apply-custom-css-to-admin-area/
Peter
ModeratorHello,
According to the screenshot, the error occurs when a file or a function is missing in the plugin Divi Builder source code. I test to install this plugin on my demo site with Meta Box, MB AIO and it is activated properly. Screenshot https://imgur.com/2PdWPB0
You can try to download a new plugin file from Divi account, install it on your site again and let me know how it goes.
Peter
ModeratorHello,
Do you use the permalink setting Plain? Please change it to Post name and recheck the issue. You can find it in admin area > Settings > Permalinks.
Peter
ModeratorHello Yasmine,
It is the auto-guessing redirect feature of WordPress, it will redirect you to a similar post if you type something to the URL. Please follow the article below to get more information and disable it
https://typerocket.com/disable-wordpress-automatic-or-random-redirect-guessing-of-404s/
https://stackoverflow.com/questions/64061145/how-to-stop-wordpress-from-automatically-doing-a-redirectIt's not a Meta Box issue so I will close this ticket.
Peter
ModeratorHello,
In the new Meta Box version 5.9.11, the default step minute is set to 5. You can use the
js_optionsand set the step minute to 1. Following the documentation
https://docs.metabox.io/fields/datetime/
and this screenshot https://imgur.com/kMMaQXYPeter
ModeratorHello Sinisa,
First thing, please understand that Meta Box Custom Post Types helps you create a custom post type with UI, instead of coding as in the WordPress documentation https://developer.wordpress.org/reference/functions/register_post_type/
Second thing, WordPress itself doesn't have an option to add the taxonomy slug to the post URL (permalink). You can follow the topic below to use the code to add the taxonomy slug to the post URL.
https://stackoverflow.com/questions/57765487/how-to-add-custom-taxonomy-in-custom-post-type-permalinkJuly 16, 2024 at 11:11 PM in reply to: Issue with Elementor grid loop in archive template when query is Current Query #45914Peter
ModeratorHello,
When creating or editing the custom post type, you can go to the Taxonomies tab and unset the Category taxonomy. Here is the screenshot https://imgur.com/MSw5Zt1
Peter
ModeratorHello Michele,
Can you share a screen record of the issue on your site? I test to create a block with the same WYSIWYG fields but don't see that. Here is the screenshot of the block setting in the admin area
https://imgur.com/dQA5VyxPeter
ModeratorHello Harry,
Do you try to add more value to the setting max_input_vars? For example: 100-500k?
Peter
ModeratorHello,
Can you share the code that creates the group field? You should add the subfield ID to the remote validation. Here is an example:
add_filter( 'rwmb_meta_boxes', 'your_prefix_function_name' ); function your_prefix_function_name( $meta_boxes ) { $meta_boxes[] = [ 'title' => __( 'My Post Meta1', 'your-text-domain' ), 'id' => 'my-post-meta1', 'fields' => [ [ 'name' => __( 'Group', 'your-text-domain' ), 'id' => 'group', 'type' => 'group', 'fields' => [ [ 'name' => __( 'Text', 'your-text-domain' ), 'id' => 'text', 'type' => 'text', ], ], ], ], 'validation' => [ 'rules' => [ 'text' => [ 'remote' => admin_url( 'admin-ajax.php?action=my_action1' ) ] ], 'messages' => [ 'text' => [ 'remote' => __( 'test remote validation', 'your-text-domain' ) ] ], ], ]; return $meta_boxes; } add_action( 'wp_ajax_my_action1', function () { if ( $_GET['text'] === 'something' ) { echo 'true'; // Valid } else { echo 'false'; // Invalid } die; } );July 15, 2024 at 9:35 PM in reply to: ✅Avoiding Custom Field Duplication Across Multiple CPTs in BricksBuilder #45904Peter
ModeratorIf you check the field ID and value in the database, table wp_postmeta, you can see the meta key is the same for posts in other post types. I think Bricks builder automatically adds the CPT slug to their variable. You can ask Bricks support to get more information.
-
AuthorPosts