// ----- 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; } Trump May Hold Off Tariffs on India Over Russian Oil - Bharat Pulse News
International

Trump May Hold Off Tariffs on India Over Russian Oil

U.S. President Donald Trump suggested that the United States may not immediately impose secondary tariffs on India for continuing to purchase Russian crude oil, despite recent moves targeting Indian exports. He indicated that such a decision could change in the coming weeks.

Trump Says India Is Out as Oil Client

Trump remarked that Russia has effectively lost India as an oil customer, pointing to India’s previous reliance on Russian imports. He noted that India earlier accounted for nearly 40 percent of Russian oil exports. Trump stated that imposing secondary tariffs now would be “devastating” for India, but added, “If I have to do it, I’ll do it. Maybe I won’t have to do it.” He left the door open for reconsideration in two to three weeks.

Tariff Actions and Context

Earlier this month, the U.S. introduced a 25 percent reciprocal tariff on Indian goods, which later rose to 50 percent, specifically linked to India’s continued purchase of Russian energy. The escalation has strained U.S.–India trade relations, with India maintaining that its energy imports are driven by national security needs rather than political motives.

What Comes Next

Trump’s statements following the Alaska summit give India a limited window to adjust its oil sourcing or diplomatic posture. The remarks signal a pause in pressure rather than a permanent shift, with the possibility of tougher measures returning depending on how global energy and diplomatic alignments evolve.

Related Posts