Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Lisa,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look.Peter
ModeratorHello,
Yes, please take a screen record of the issue and export the field group to a JSON file and share them here.
October 26, 2023 at 7:23 PM in reply to: ℹ️Google reCaptcha verification code cannot be displayed #43639Peter
ModeratorHello,
Can you please share your site URL? I will help you to check the issue.
You can also try to deactivate all plugins except Meta Box, MB extension plugins, switch to a WordPress theme and recheck this.
Peter
ModeratorHello Steve,
Meta Box does not have an option to rewrite slug of the default WordPress post. If you want to change the permalink of the default post, you can go to Settings > Permalinks.
Peter
ModeratorHello Felix,
I tested this issue on my demo site and saw that both fields single_image, image_advanced work with Elementor section background image. Please update Meta Box, MB extension plugins to the latest version and check this again.
If it does not work, you can export the field group to a JSON file and share it here. I will check your field group on my site. Refer documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorHello,
You can try to use the filter hook
rwmb_frontend_submit_buttonto add your custom button to the same div. For example:add_filter( 'rwmb_frontend_submit_button', function( $button, $config ) { $button .= "<div>your button here</div>"; return $button; }, 10, 2 );Please read more in the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#form-hooks
Peter
ModeratorHello Yasmine,
The plugin MB Include Exclude (advanced location rules) does not work with custom fields, it works with meta box (field group) only. You can use the plugin MB Conditional Logic to show/hide field based on a condition. Please read more in the documentation
https://docs.metabox.io/extensions/meta-box-include-exclude/Peter
ModeratorHello,
MB Conditional Logic does not support nested relations as in your code, please remove one relation and recheck this issue. Read more in the documentation https://docs.metabox.io/extensions/meta-box-conditional-logic/#multiple-conditions
Peter
ModeratorHello,
You can click on Advanced link to get the option name and replace it with "site_option" in the shortcode above, screenshot https://imgur.com/dXrQGKP
[rwmb_meta id="phone" object_id="settings_page_123" object_type="setting"]Peter
ModeratorHello,
How do you set the relation between terms on your site? If you use the MB Relationships plugin, you can follow the documentation to get the related/connected term https://docs.metabox.io/extensions/mb-relationships/#terms
Peter
ModeratorHello,
The relation OR might help you in this case. For example:
// Append our meta query $meta_query = [ 'relation' => 'OR', [ 'key' => 'end_dato', 'value' => date("Y-m-d",time()), 'compare' => '<=', ], [ 'key' => 'start_dato', 'value' => date("Y-m-d",time()), 'compare' => '>=', ] ];Read more about custom field parameter in the WordPress documentation https://developer.wordpress.org/reference/classes/wp_query/#custom-field-post-meta-parameters
Peter
ModeratorHello Kris,
It's the cloneable feature and it's a native feature of all fields. In the builder, you can enable the Cloneable option when editing the field. Please follow this documentation https://docs.metabox.io/cloning-fields/
Peter
ModeratorHello Yasmine,
Can you please share some screenshots or a screen record of the issue? Do you use a multi-step form, show the current step (page) and hide other ones?
Peter
ModeratorHello,
1. You can combine your code in the second comment (https://support.metabox.io/topic/receive-notifications/?swcfpc=1#post-43569) to check the specific form by form ID and send the email.
2. I'm not sure if a third-party plugin can cause this issue but the send function works as it is. It isn't a Meta Box issue itself.
3. You can get the field email value via the $_POST variable. For example:
wp_mail( $_POST['custom_field_id'],'New submission', 'A new post has been just submitted.');Peter
ModeratorHello there,
You can use PHP code to register the block, then check if the current page is the widget page and return $meta_boxes variable at that point. For example:
// Register a hero content block for Gutenberg. add_filter( 'rwmb_meta_boxes', function( $meta_boxes ) { global $pagenow; if ( $pagenow == 'widgets.php' ) { return $meta_boxes; } $meta_boxes[] = [ 'title' => 'Hero Area', 'id' => 'hero-area', 'type' => 'block', // Important. ... ]; return $meta_boxes; } );Follow the WordPress documentation https://codex.wordpress.org/Global_Variables#Admin_Globals
-
AuthorPosts