Page 1 of 1

Remove Pop-up/Transition screen

Posted: Wed Nov 27, 2024 3:58 am
by elawrenc01
Hi,

Is it possible to remove the pop-up transition screen?

Thanks

Ed L.

Re: Remove Pop-up/Transition screen

Posted: Wed Nov 27, 2024 7:48 pm
by axew3
From the iframe template integration?

if using page-forum(or WHateverNAmed).php
search and remove this

Code: Select all

<!-- noscript warning and simple preloader -->
<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 template integration using shortcode, it is substantially the same. but it need to be done into the file:
/wp-content/plugins/wp-w3all-phpbb-integration/views/wp_w3all_phpbb_iframe_short.php
(or into the custom files folder if using the option (activated) Use custom files to display Last Topics Widgets, Login Widget and Shortcodes, so into /wp-content/plugins/wp-w3all-custom)

in this case it is Php echoed so be careful on removing the code inside the

Code: Select all

echo'

Code: Select all

echo'<!-- noscript warning and simple preloader -->
<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>

Re: Remove Pop-up/Transition screen

Posted: Thu Nov 28, 2024 4:00 pm
by elawrenc01
Thank you for your reply. I am using the shortcode so I will let you know how it goes.

Re: Remove Pop-up/Transition screen

Posted: Tue Dec 03, 2024 2:59 am
by elawrenc01
Just letting you know this worked great. Thank you!