Hi,
I am not familiar with the themes you are working, however, if you would like to get Custom Field/s presented in a page, there is quite a simple way you can try if you are willing to edit the functions.php in your theme.
Locate your theme and edit the functions.php file, add to its end the following lines and save it:
//
function get_custom_field( $atts, $content ) {
return get_field($atts[‘fname’]);
}
add_shortcode( ‘ke_get_field’, ‘get_custom_field’ );
//
In your theme editor/page builder in a text box or shortcode element in order to fetch/get/read the custom field add the following as stand-alone or inline with your text:
[ke_get_field fname=’link_address’]
the attribute/variable fname holds the name of the Custom Field as you added to that post/page.
Save page and preview.
With Elementor it works great.