// ----- MEMBERSHIP LEVEL + AMOUNT (robust) ----- function getMembershipLevel(){ var form = document.querySelector('form[class*="swpm"], form[id*="swpm"]') || document.querySelector('form'); if(!form) return null; // 1) Hidden input var hidden = form.querySelector('input[name="membership_level"], input[name="level"], input[name="swpm_level"]'); if (hidden && hidden.value && hidden.value.trim() !== '') { var n = parseInt(hidden.value.trim(), 10); if (!isNaN(n)) return n; } // 2) Radio group var radios = form.querySelectorAll('input[type="radio"][name="membership_level"], input[type="radio"][name="level"], input[type="radio"][name="swpm_level"]'); if (radios && radios.length) { for (var i=0;i amount (supports both numeric IDs and string plan IDs if you add them) function amountForLevel(lvl){ // If your site uses plan IDs instead of 3/4/5, map them here too: // e.g. if "Standard Plan" is ID 7 and should be ₹400: if (lvl === 7) return 400; if (lvl === 3) return 400; if (lvl === 4) return 300; if (lvl === 5) return 200; return null; } // Always format amount as 2 decimals for UPI function formatAmount(am){ if (am == null) return null; var n = Number(am); if (!isNaN(n)) return n.toFixed(2); // "400.00" return null; } // Build UPI link with forced amount + tn=username function upiLink(username){ var lvl = getMembershipLevel(); var am = amountForLevel(lvl); var amStr = formatAmount(am); var tn = (username || '').trim(); var link = 'upi://pay?pa='+encodeURIComponent(payeeVPA) + '&pn='+encodeURIComponent(payeeName) + '&cu=INR' + (amStr ? '&am='+encodeURIComponent(amStr) : '') + (tn ? '&tn='+encodeURIComponent(tn) : ''); return link; } // Re-render (unchanged call sites) function render(){ var uname = (userInput.value || '').trim(); var link = upiLink(uname); if (qr.clear) qr.clear(); qr.makeCode(link); var open = document.getElementById('swpm-upi-open'); if(open) open.href = link; } Air India, IndiGo Arrange Special Flights Amid Nepal Unrest - Bharat Pulse News
National

Air India, IndiGo Arrange Special Flights Amid Nepal Unrest

Kathmandu’s Tribhuvan International Airport resumed operations on September 10, 2025, following temporary closure due to mass protests led by Gen Z activists opposing a social media ban. The airport had been shut since September 9, when protesters set fires nearby and disrupted flights.

Special Flights Deployed

In response, Air India and IndiGo have initiated special return flights between Delhi and Kathmandu to evacuate stranded Indian passengers. Air India has deployed flights on September 10 and 11, and regular operations are scheduled to resume from September 11 onward. Airlines have been advised to maintain “reasonable” fare levels to aid returning travelers.

Flight Suspensions And Disruptions

Earlier on September 10, IndiGo had suspended all flights to and from Kathmandu until 6 PM due to the extended airport closure. Some Kathmandu-bound flights had also been diverted to Lucknow when the airport remained inaccessible.

Human Impact

The unrest has left a significant number of Indian citizens—pilgrims, tourists, and families—stranded in Kathmandu with limited access to essential services. The disruption intensified the need for swift evacuation and coordinated support from the government and airlines.

Related Posts