Easily hide partial or all of your premium content from your users that using AdBlock or Adblocking software. Just add 4 lines of code to your page and it will automatically hide your content without any trouble.
Features
- Your premium content will be hidden until user deactivate AdBlock.
- Hide all or partial content from your page.
- Hide anything you want in your PHP file.
- Your content won’t show in Source View.
- Cross browser detection.
- Easy to setup, less than 5 minutes to setup.
- Just add 4 lines of code to your page and you’re set.
- Uses cookies to detect deactivate AdBlock.
- Highly customizable message and CSS.
Requirements
- PHP 5.xx (older version may work but they have not been tested).
- Basic understanding on how to write in PHP.
Inserting FAtS To Your Code
<?php include "fats_core.php"; ?>
<html>
<head>
<?php writeJS($fats_config ); ?>
</head>
<body>
Your regular content
<?php if (isUnlocked($fats_config)){ // START HIDDEN CONTENT ?>
<p>Your premium content</p>
<?php } ///////////////////////////// STOP HIDDEN CONTENT ?>
Your regular content
</body>
</html>