function get_phone_without_plus() {
    $phone = get_field('phone'); // Adjust field name if needed
    return ltrim($phone, '+');
}
add_shortcode('phone_clean', 'get_phone_without_plus');