Remove Pop-up/Transition screen

elawrenc01
User www
User www
Posts: 51
Joined: Thu Feb 16, 2017 11:59 am

Remove Pop-up/Transition screen

Post by elawrenc01 »

Hi,

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

Thanks

Ed L.
User avatar
axew3
w3all User
w3all User
Posts: 2887
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Remove Pop-up/Transition screen

Post 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>
elawrenc01
User www
User www
Posts: 51
Joined: Thu Feb 16, 2017 11:59 am

Re: Remove Pop-up/Transition screen

Post by elawrenc01 »

Thank you for your reply. I am using the shortcode so I will let you know how it goes.
elawrenc01
User www
User www
Posts: 51
Joined: Thu Feb 16, 2017 11:59 am

Re: Remove Pop-up/Transition screen

Post by elawrenc01 »

Just letting you know this worked great. Thank you!
Post Reply