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.
PingPong's platform gave us the flexibility to customize a solution that optimized our business goals and needs. It allowed us to save more money, make more profit, and obtain transparent solutions all in one place.
Nate Jackson
VP of acquisitions at Perch

The Problem

As a company that helps brands reach their full potential, Perch recognized the importance of expanding into global marketplaces. However, they needed a payment provider they could trust implicitly, one that would consistently offer competitive rates and reliable service.

The Solution

Recognizing that individually opening new accounts for each acquisition was neither scalable nor efficient, Perch collaborated with their dedicated PingPong account manager to design a customized solution that aligned with their unique business goals and requirements. This tailored approach led to immediate cost savings, increased profitability, and a transparent financial ecosystem under a single platform.

“Ultimately, we needed a trusted payment provider with whom we didn't have to worry about whether we were getting the best rate. With PingPong, we could trust that we were getting a good deal; today, tomorrow, forever, with a system that would work; today, tomorrow, forever.”

Nate Jackson, VP of Acquisitions at Perch

Perch's partnership with PingPong Payments has significantly propelled their global expansion journey. By leveraging PingPong's solutions, Perch can focus on their core objective of maximizing the potential of brands without the burden of complex financial operations. The seamless functionality, comprehensive visibility, and cost-saving features provided by PingPong have laid a solid foundation for Perch's future growth and success.

PingPong Payments has proven to be an invaluable asset in Perch's quest for global expansion. By offering transparent costs, significant savings, and streamlined operations, PingPong has empowered Perch to overcome the challenges of working across multiple currencies and markets.

Results

With a customized solution tailored to their specific needs, Perch has experienced immediate financial benefits and enhanced control over their global operations. As Perch continues to grow and flourish, their partnership with PingPong Payments remains a cornerstone of their international success story.

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

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

No items found.
(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 表示在“捕获阶段”监听,比页面原有的任何事件都优先 ); })();