Appearance
Split Offer
FlexHD supports split offer feature.
Split offer is a feature to target Offer Links from affiliates based on country code according to the User's / audience's IP Address
when visiting the website. To set using the admin panel or manually by editing the config.php
file.
Admin Panel
To manage using the admin panel, you can open the Split Offer tab.
WARNING
There must be an offer link with country code left blank as default
Manual
To set it manually, you can edit the config.php
file. Fill it in array
format
php
...
'show_modal_duration' => '10',
'split_offer' => [
[
'code_country' => [],
'url_offer' => '//www.google.com/search?q=nanosia.com',
],
[
'code_country' => [
'es',
'id',
'us',
],
'url_offer' => '//youtube.com',
],
],
...
...
'show_modal_duration' => '10',
'split_offer' => [
[
'code_country' => [],
'url_offer' => '//www.google.com/search?q=nanosia.com',
],
[
'code_country' => [
'es',
'id',
'us',
],
'url_offer' => '//youtube.com',
],
],
...