MyBB Community Forums

Full Version: forced slot code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello there I have been searching for a long time for an add-on or a code to place the advertisement for the compulsory slot, but I did not find it. Can anyone help me in obtaining this code or addition, and I will be very thankful
Thank you very much, my dear, but this is not what I want. I want when the site is opened or closed, an additional page is opened, which I select. This hack was available in forums vBulletin My name is the hack, the forced opening is not to put ad codes to appear. I hope I made the idea clear
you mean popup ad on page open or page close event?
(2021-10-03, 07:30 PM)Mostafa.Shiraali Wrote: [ -> ]you mean popup ad on page open or page close event?
Yes, this is what I want. When the page is refreshed or closed, a page will pop up. I specify the link to this page in advance
you can use javascript.
for example use below code on headerinclude template

<script text="text/javascript">
window.addEventListener("beforeunload", function(e){
window.open("http://youraddomain.ext",'_parent','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
window.focus();
}, false);
</script>