Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look.October 26, 2023 at 8:23 PM in reply to: Cannot be displayed on the front end, how to set it up? #43643Peter
ModeratorHello,
The attribute
idshould be assigned to a custom field ID, not the field group ID.[rwmb_meta id="custom_field_id" object_id="post_id_here" storage_type="custom_table" table="shop_mark"]Read more in the documentation https://docs.metabox.io/shortcode/
Peter
ModeratorHello,
Is it possible to view the user confirmation status in wp-admin?Yes, you can edit a user, if there is a button to resend email confirmation, the user is not verified. Screenshot https://imgur.com/AuCpyvt
Is it possible to manually confirm a user so he may log in? Where is this data stored, so I could clear it via the database if needed?You can check the user that has the meta key
mbup_confirmation_codein the table wp_usermeta, delete it to confirm the user.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/
-
AuthorPosts