Chat with us, powered by LiveChat

Contact us

Thanks for getting in touch!
We'll reach out to you shortly.
Oops! Something went wrong while submitting the form.

How do I make a bill payment using PingPong?

To make a bill payment using PingPong, follow these steps:

  1. When you receive a bill payment email, click the "View Detail" button to enter the invoice details page.
  2. If you need more time to pay, click the "Remind me later" button and fill in the information as required.
  3. If you need to make changes to the invoice, click the "Modify invoice" button and edit the details before confirming.
  4. If you are unable to pay the bill, click the "Reject payment" button and select the reason why.
  5. If there are no issues with the bill, select the payment method you prefer and proceed to the payment page. Note that you can either create a PingPong account or login to your existing account to make the payment. If you choose NOT to register or log in, you can still process the payment via bank transfer.
  6. After entering the required information, you will be redirected to the PingPong dashboard where you can find the bill you wish to pay.
  7. Return to the invoice page and select a method to officially payout the bill:

7.1 Pay online:

  • 7.1.1 Pay online (Manually transfer money from your bank): Click this method and enter your information as required. Enter the amount and PIN, and then click "Submit". Note that the payment is not complete yet, and you need to initiate a wire transfer before the payment expires. Take the receive account information provided and start your wire transfer. If you need help with the transfer, contact your bank account for assistance.
  • 7.1.2 Pay online (PingPong balance transfer): Choose this method to transfer money directly from your PingPong account balance to pay the bill.
  • 7.1.3 Pay online (ACH) Only supports US bank: This method is available only for US bank accounts.

7.2 Local payment method (EU local payment): Choose this method if you have a bank account within the EU to pay the bill.

7.3 Credit/Debit card: Use this method if you want to pay the bill using your credit or debit card.

7.4 Bank transfer: Choose this method to initiate a bank transfer from your account to pay the bill.

Still need help?

พันธมิตรธนาคารของเรา

ทำให้การชำระเงินทั่วโลกเป็นเรื่องที่ง่ายด้วย PingPong

โซลูชันการชำระเงินแบบครบวงจร เพื่อพัฒนาธุรกิจให้เติบโตอย่างยั่งยืน

(function () { // 1. 定义需要透传的参数白名单 const TRACKING_KEYS = ['inviteCode', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_content', 'utm_term', 'gclid', 'fbclid', '_gl']; // 2. 获取当前页面的所有参数 const currentParams = new URLSearchParams(window.location.search); let passThroughString = ''; // 3. 拼接参数,确保每个参数前都有 '&' TRACKING_KEYS.forEach((key) => { if (currentParams.has(key)) { const val = encodeURIComponent(currentParams.get(key)); passThroughString += `&${key}=${val}`; // 注意这里:强制在每个参数前加 & } }); // 如果没有参数,直接结束,不执行后续逻辑 if (!passThroughString) return; // 4. 【暴力拦截】监听所有即将发生的跳转 // 这一步比点击事件更底层,只要浏览器想跳转,我们就能拦住 window.addEventListener( 'beforeunload', function (e) { // 获取当前鼠标点击的目标(如果是通过点击触发的跳转) // 注意:beforeunload 很难获取点击目标,所以我们改用捕获阶段的点击事件更稳妥 }, true, ); // 5. 【修正方案】使用捕获阶段的点击监听(比冒泡更早,更暴力) document.addEventListener( 'click', function (e) { // 找到被点击的链接 标签 let target = e.target; while (target && target !== document) { if (target.tagName === 'A' && target.href) { // 判断是否是我们要跳转的目标域名 if (target.href.includes('business.pingpongx.com')) { e.preventDefault(); // 阻止默认跳转 // --- 开始组装新链接 --- const url = new URL(target.href); // 1. 强制设置 location=in url.searchParams.set('location', 'in'); // 2. 把我们提取到的参数一个个塞进去(自动处理 & 分隔符) TRACKING_KEYS.forEach((key) => { if (currentParams.has(key)) { url.searchParams.set(key, currentParams.get(key)); } }); // 3. 执行跳转 window.location.href = url.toString(); return; // 处理完就退出 } } target = target.parentNode; } }, true, // true 表示在“捕获阶段”监听,比页面原有的任何事件都优先 ); })();