// Helper WhatsApp Colombia if (!function_exists('vc_wa_url')) { function vc_wa_url($numero) { $n = preg_replace('/[^0-9]/', '', (string)$numero); if (substr($n,0,2) === '57') return 'https://wa.me/'.$n; if (strlen($n) >= 10) return 'https://wa.me/57'.$n; return 'https://wa.me/'.$n; } }