The Most Active and Friendliest
Affiliate Marketing Community Online!

“AdsEmpire”/  Direct Affiliate

Seeking Help Landing Page CTR Dropped by Half – Need Help!

Crazyflame

New Member
affiliate
Hi, I recently switched from BeMob to AdsBridge since my network provides it for free. However, I noticed that my landing page’s button CTR has dropped by half. I don’t understand why—it’s the same landing page. It plays a video, and if users click anywhere, they will be redirected to the dating offer. So very simple.

A 50% drop in CTR means I’m losing half my traffic. What could be causing this, and how can I improve CTR? I’d prefer not to switch trackers since it’s free. As a beginner, saving $50 per month is a big deal.

Any insights would be greatly appreciated. Thanks!
 
your CTR drop likely stems from tracking script interference, slower redirects, or a technical issue with AdsBridge. Check for redirect delays, tracking conflicts, or browser compatibility issues. Run a test without tracking to compare speeds, and A/B test BeMob vs. AdsBridge with the same traffic source. If AdsBridge is the issue, tweak its settings or reach out to their support. Have you checked if tracking scripts are affecting click events?
 
Hi, I recently switched from BeMob to AdsBridge since my network provides it for free. However, I noticed that my landing page’s button CTR has dropped by half.

Any insights would be greatly appreciated. Thanks!

1.) AdsBridge may be applying bot filters to your CTR button. Understand how to use and modify that tracker. Read the documentation or ask.

2.) Learn to log your own CTR button clicks out. Use AJAX (xhr)
'buttonID' and be changed to your own name like 'ctrButton' or similar
JavaScript:
document.addEventListener("DOMContentLoaded", function () {
    document.querySelectorAll(".track-button").forEach(button => {
        button.addEventListener("click", function () {
            let buttonID = this.id || "unknown_button";
            let timestamp = new Date().toISOString();

            let data = new FormData();
            data.append("button_id", buttonID);
            data.append("timestamp", timestamp);

            let xhr = new XMLHttpRequest();
            xhr.open("POST", "log_click.php", true);
            xhr.send(data);
        });
    });
});
chmod 666 click_log.txt
PHP:
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
    $buttonID = $_POST["button_id"] ?? "unknown";
    $timestamp = $_POST["timestamp"] ?? date("c");

    $logEntry = "$timestamp - Button: $buttonID\n";
    file_put_contents("click_log.txt", $logEntry, FILE_APPEND | LOCK_EX);
}
?>
That will be a reliable count but it will be unfiltered. You can add remote host and screen size as well as other attributes to attempt to sort out any bot traffic to the PHP. If you have a basic understanding of the above we could try to improve the tracking.
 
MI
Back