';
// Display the title, if it's set.
if ( isset( $fourbzcore_layout_opts['title_text'] ) && $fourbzcore_layout_opts['title_text'] ) {
if ( isset( $fourbzcore_layout_opts['is_widget'] ) && $fourbzcore_layout_opts['is_widget'] ) {
echo $fourbzcore_layout_opts['title_text'];
} else {
echo '
';
}
}
// Get the google maps app id.
$key = isset( $fourbzcore_layout_opts['google_app_id'] ) ? $fourbzcore_layout_opts['google_app_id'] : null;
if ( $key && isset( $fourbzcore_layout_opts['show_map'] ) && $fourbzcore_layout_opts['show_map'] &&
isset( $fourbzcore_layout_opts['contact_address'] ) ) {
$address = str_replace( ' ', '+', $fourbzcore_layout_opts['contact_address'] );
?>
fourbzcore_shortcodes->contact_info( $fourbzcore_layout_opts );
?>
';
echo do_shortcode( stripslashes( $fourbzcore_layout_opts['contact_form'] ) );
echo '';
}
echo '';
?>