Load Screen

JDoo
Posts: 3
Joined: Wed Jan 15, 2025 7:49 pm

Load Screen

Post by JDoo »

Hello, i have a problem, it have a loading screen, and nothing happens :(
Any idea why is that?
Thank you
User avatar
axew3
w3all User
w3all User
Posts: 3020
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Load Screen

Post 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/
JDoo
Posts: 3
Joined: Wed Jan 15, 2025 7:49 pm

Re: Load Screen

Post 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?
User avatar
axew3
w3all User
w3all User
Posts: 3020
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Load Screen

Post 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>
Post Reply