Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Martin,
Please update the plugin Meta Box AIO to the new version 1.13.2 then re-import the field groups file (.dat). Let me know how it goes.
Long Nguyen
ModeratorHi Rick,
Please update the plugin Meta Box AIO to the new version 1.13.2 then re-import the field groups file. Let me know how it goes.
Long Nguyen
ModeratorHi Martin,
We have an extension that integrates Meta Box and SearchWP https://metabox.io/plugins/meta-box-searchwp-integrator/.
It helps you to searching data on the custom table or even with serialized data (group).
February 7, 2021 at 9:53 AM in reply to: How to get a label from a select field that is in a sub group field? #24353Long Nguyen
ModeratorHi Dobos,
Please follow this topic to get the label of the sub-field select in a group https://support.metabox.io/topic/show-label-of-select-chekbox-list/.
Let me know if it helps.
Long Nguyen
ModeratorHi Pablo,
Please follow the step Debugging Information on this topic https://support.metabox.io/topic/how-to-create-a-new-topic/.
If it still does not work or show any error message, please share the code that creates meta boxes and custom fields. I will check it out.
Long Nguyen
ModeratorHi,
Thank you for your reporting.
I'm going to discuss with the developer team to take a look at this case and create an update to cover it.
Long Nguyen
ModeratorHi David,
You can try to use this shortcode to get the field value of a settings page:
[rwmb_meta id="field_id" object_type="setting" object_id="option_name"]Long Nguyen
ModeratorHi Martin,
Did you assign the variable to a value?
$logo = 'logo'; $pencil = 'pencil';Or add it directly in the helper function:
$value = rwmb_meta( 'logo', ['object_type' => 'setting'], 'pencil' );Long Nguyen
ModeratorHi,
Please help me to do some steps to find the extension which causes the issue.
Go to Admin Dashboard > Meta Box > Extensions > Turn on/off extension one by one and follow this issue for a few days.
February 4, 2021 at 12:56 PM in reply to: ✅Accessing Category Custom Field at Post level in Elementor #24316Long Nguyen
ModeratorHi Ian,
The Elementor Pro plugin has been changed the source code of dynamic tags. We will try to create an update for the extension MB Elementor Integrator as soon as possible. For now, please try to get the term meta by coding and follow this documentation https://docs.metabox.io/extensions/mb-term-meta/.
Long Nguyen
ModeratorHi,
Maybe the CPT slug
plugincaused the issue. I've tested to assign two field groups topostand do not see any issue so back to the CPT, I changed it toplugin1slug and conditional logic works as well. Screen record https://share.getcloudapp.com/o0uEx2o1.It might relate to the Reserved Terms in the new version of WordPress.
https://docs.metabox.io/extensions/mb-custom-post-type/#reserved-termsLong Nguyen
ModeratorHi,
Please go to Meta Box > Extensions and share some screenshots of activating extensions. And please contact your hosting/server provider to ask to track what functions/files caused the high CPU usage. It will help us to get some clues to troubleshoot the issue.
Long Nguyen
ModeratorHi Martin,
Please download the MB AIO plugin version 1.12.3 here (removed link).
Then export the field groups (file .dat) and share them. I will try to import field groups to my site and check it out.
February 3, 2021 at 12:26 PM in reply to: ✅Meta Box showing in sidebar instead of below content #24306Long Nguyen
ModeratorHi Mike,
WordPress support to move/drag&drop meta boxes from the side content to after content. See my screen record https://share.getcloudapp.com/d5uwz5g9.
Long Nguyen
ModeratorHi Martin,
I've added your code to the file functions.php then show the page settings in the file header.php of the theme but not see any issue.
<head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=10.0, user-scalable=yes"> <link rel="profile" href="http://gmpg.org/xfn/11"> <?php wp_head(); ?> <?php $metades = rwmb_meta( 'meta_description', ['object_type' => 'setting'], 'DiSettings' ); $metakey = rwmb_meta( 'meta_keywords', ['object_type' => 'setting'], 'DiSettings' ); ?> <meta name="description" content="<?php echo $metades;?>"> <meta name="keywords" content="<?php echo $metakey;?>"> </head>Can you please check your variable
$meta_description,$DiSettingsif it is assigned to the field ID?$metades = rwmb_meta( $meta_description, ['object_type' => 'setting'], $DiSettings ); -
AuthorPosts