Page 1 of 1

Load Screen

Posted: Sat Oct 11, 2025 9:55 pm
by JDoo
Hello, i have a problem, it have a loading screen, and nothing happens :(
Any idea why is that?
Thank you

Re: Load Screen

Posted: Sun Oct 12, 2025 5:52 am
by axew3
Hello you mean about the iframe template integration?
Which errors reports your browser console, are you able to report?
Are your site online, so that it can be seen from the html source what you have not correctly setup?
Did you added the code into the phpBB overall_footer.html as it is explained here and rebuilt the stale template?
https://www.axew3.com/w3/2020/01/phpbb- ... iframe-v5/

Re: Load Screen

Posted: Sun Oct 12, 2025 1:29 pm
by JDoo
its worked well, but for a while in private tab just the loading screen appears.
i made rebuild many times, its always worked
do i have to do something new?

Re: Load Screen

Posted: Sun Oct 12, 2025 4:41 pm
by axew3
If you mean that you want to remove the preloader completely

If using page-forum.php (or whatever you named it) open the file into your template folder
and remove this:

Code: Select all

<div id="w3idwloader" class="w3_wrap_loader">
  <noscript><h3 style="background-color:#333;color:#FFF;padding:15px;font-size:0.8em;pointer-events:auto;">Javascript disabled: can't load the forum page at this Url.<br />Enable Javascript on your browser or visit the forum here:<br /><br /><?php echo $w3all_url_to_cms;?><br /><a href="<?php echo $w3all_url_to_cms;?>">To be auto-redirected click here<br />(may this link will not work)</a></h3></noscript>
<div class="w3preloadtext"><?php echo $w3guessdomaindisplay ; ?></div>
<div class="ww3_loader"><div class="w3_loader"></div></div>
</div>
If using the shortcode template integration, open the file
wp-content/plugins/wp-w3all-phpbb-integration/views/wp_w3all_phpbb_iframe_short.php
or if using the custom files option into the
wp-content/plugins/wp-w3all-custom/wp_w3all_phpbb_iframe_short.php folder
and remove the follow:

Code: Select all

<div id="w3idwloader" class="w3_wrap_loader">
  <noscript><h3 style="background-color:#333;color:#FFF;padding:15px;font-size:0.8em;pointer-events:auto;">Javascript disabled: can\'t load the forum page at this Url.<br />Enable Javascript on your browser or visit the forum here:<br /><br />'.$w3all_url_to_cms.'<br /><a href="'.$w3all_url_to_cms.'">To be auto-redirected click here<br />(may this link will not work)</a></h3></noscript>
<div class="w3preloadtext">'.$w3guessdomaindisplay.'</div>
<div class="ww3_loader"><div class="w3_loader"></div></div>
</div>