diff --git a/app/Classes/Modules/Accounts/ControllersLogic/CreateCustomerLogic.php b/app/Classes/Modules/Accounts/ControllersLogic/CreateCustomerLogic.php index d681d182..212977be 100644 --- a/app/Classes/Modules/Accounts/ControllersLogic/CreateCustomerLogic.php +++ b/app/Classes/Modules/Accounts/ControllersLogic/CreateCustomerLogic.php @@ -183,8 +183,10 @@ class CreateCustomerLogic extends AbstractControllerLogic } } - // Track affiliate registration if user came from affiliate link - $this->tracksAffiliateRegistration->execute($user, $request->get('tracking')); + // Track affiliate registration if user came from affiliate link. + // Prefer ?tracking= from request; fallback to cookie set by TrackAffiliateClick on /signup visit. + $code = $request->get('tracking') ?? $request->cookie(\App\Classes\Modules\Affiliate\Services\TracksAffiliateClick::COOKIE_NAME); + $this->tracksAffiliateRegistration->execute($user, $code); return $this->response($this->authenticationProcessor->execute($request, false)); diff --git a/resources/views/pages/landing/1688-vip-payment-landing-page-general-fb.blade.php b/resources/views/pages/landing/1688-vip-payment-landing-page-general-fb.blade.php index 02e836dc..b42064e9 100644 --- a/resources/views/pages/landing/1688-vip-payment-landing-page-general-fb.blade.php +++ b/resources/views/pages/landing/1688-vip-payment-landing-page-general-fb.blade.php @@ -531,7 +531,7 @@
- 立即获取子账号 + 立即获取子账号
@@ -881,7 +881,7 @@
- 立即获取子账号 + 立即获取子账号
@@ -1233,7 +1233,7 @@

- 立即获取子账号 + 立即获取子账号

🕐 客服时间:周一至周五 9:00 AM - 6:00 PM(马来西亚时间)
diff --git a/resources/views/pages/landing/1688-vip-payment-landing-page-general-google.blade.php b/resources/views/pages/landing/1688-vip-payment-landing-page-general-google.blade.php index 6fd84a11..abeede71 100644 --- a/resources/views/pages/landing/1688-vip-payment-landing-page-general-google.blade.php +++ b/resources/views/pages/landing/1688-vip-payment-landing-page-general-google.blade.php @@ -531,7 +531,7 @@

- 立即获取子账号 + 立即获取子账号
@@ -881,7 +881,7 @@
- 立即获取子账号 + 立即获取子账号
@@ -1233,7 +1233,7 @@

- 立即获取子账号 + 立即获取子账号

🕐 客服时间:周一至周五 9:00 AM - 6:00 PM(马来西亚时间)
diff --git a/resources/views/pages/landing/1688-vip-payment-landing-page-wf-comparison-fb.blade.php b/resources/views/pages/landing/1688-vip-payment-landing-page-wf-comparison-fb.blade.php index 218d3e75..f79e7ca6 100644 --- a/resources/views/pages/landing/1688-vip-payment-landing-page-wf-comparison-fb.blade.php +++ b/resources/views/pages/landing/1688-vip-payment-landing-page-wf-comparison-fb.blade.php @@ -530,7 +530,7 @@

- 立即获取子账号 + 立即获取子账号
@@ -887,7 +887,7 @@
- 立即获取子账号 + 立即获取子账号
@@ -1264,7 +1264,7 @@

- 立即获取子账号 + 立即获取子账号

🕐 客服时间:周一至周五 9:00 AM - 6:00 PM(马来西亚时间)
diff --git a/resources/views/pages/landing/1688-vip-payment-landing-page-wf-comparison-google.blade.php b/resources/views/pages/landing/1688-vip-payment-landing-page-wf-comparison-google.blade.php index 8598d363..b1a97636 100644 --- a/resources/views/pages/landing/1688-vip-payment-landing-page-wf-comparison-google.blade.php +++ b/resources/views/pages/landing/1688-vip-payment-landing-page-wf-comparison-google.blade.php @@ -530,7 +530,7 @@

- 立即获取子账号 + 立即获取子账号
@@ -887,7 +887,7 @@
- 立即获取子账号 + 立即获取子账号
@@ -1264,7 +1264,7 @@

- 立即获取子账号 + 立即获取子账号

🕐 客服时间:周一至周五 9:00 AM - 6:00 PM(马来西亚时间)
diff --git a/resources/views/pages/landing/en-1688-vip-landing-page-general-fb.blade.php b/resources/views/pages/landing/en-1688-vip-landing-page-general-fb.blade.php index dcaf9f5e..5298dd3e 100644 --- a/resources/views/pages/landing/en-1688-vip-landing-page-general-fb.blade.php +++ b/resources/views/pages/landing/en-1688-vip-landing-page-general-fb.blade.php @@ -578,7 +578,7 @@

- Get Your Sub-Account Now + Get Your Sub-Account Now
@@ -928,7 +928,7 @@
- Get Your Sub-Account Now + Get Your Sub-Account Now
@@ -1280,7 +1280,7 @@

- Get Your Sub-Account Now + Get Your Sub-Account Now

🕐 Customer Service Hours: Monday to Friday 9:00 AM - 6:00 PM (Malaysia Time)
diff --git a/resources/views/pages/landing/en-1688-vip-landing-page-general-google.blade.php b/resources/views/pages/landing/en-1688-vip-landing-page-general-google.blade.php index 1ef2e46e..a24c12e5 100644 --- a/resources/views/pages/landing/en-1688-vip-landing-page-general-google.blade.php +++ b/resources/views/pages/landing/en-1688-vip-landing-page-general-google.blade.php @@ -578,7 +578,7 @@

- Get Your Sub-Account Now + Get Your Sub-Account Now
@@ -928,7 +928,7 @@
- Get Your Sub-Account Now + Get Your Sub-Account Now
@@ -1280,7 +1280,7 @@

- Get Your Sub-Account Now + Get Your Sub-Account Now

🕐 Customer Service Hours: Monday to Friday 9:00 AM - 6:00 PM (Malaysia Time)
diff --git a/resources/views/pages/settings.blade.php b/resources/views/pages/settings.blade.php index dbd1c9de..45a8bf2a 100644 --- a/resources/views/pages/settings.blade.php +++ b/resources/views/pages/settings.blade.php @@ -78,6 +78,29 @@ +

+
+
+
+
+
+
+
+ +
+
+
Affiliate
+
+
+
+
+
+
+
+