The Interstitial is a special full-screen format available for both Desktop and Mobile.
This format allows for excellent results.
For this type of banner, it is possible to customize the capping, which means the frequency of display for each user within a specific time interval.
This makes it possible to make the ad less intrusive, maintaining a good user experience.
To limit the display for individual users, simply install the following script in the header, before the hbagency script:
<script>
var hbagency_cba = new Array();
hbagency_cba['hbagency_space_55555'] = 10;
</script>
The above code allows for displaying only one banner per user within a 10-minute period.
The value of hbagency_cba['hbagency_space_55555']
needs to be replaced with the corresponding ID.
If you want to display only one banner per user over a longer time interval, simply increase the value. For example, the following code displays only one interstitial banner per user every 30 minutes:
<script>
var hbagency_cba = new Array();
hbagency_cba['hbagency_space_55555'] = 30;
</script>