Hello Peter,
As a follow up to the above, I have decided to use shortcodes to display the fields.However, they are also not working. Whether is using inbuilt shortcodes eg [rwmb_meta id="ehven_adopting_family_profile_display_name"] or creating one
function display_display_name_shortcode($atts) {
// Extract shortcode attributes
$atts = shortcode_atts(array(
'post_id' => get_the_ID(), // Default to current post ID
), $atts);
// Get the 'display name' metabox field value
$display_name_value = get_post_meta($atts['post_id'], 'ehven_adopting_family_profile_display_name', true);
// Return the 'display name' metabox field value
return $display_name_value;
}
add_shortcode('display_name', 'display_display_name_shortcode');
What might be the issue?