Page 4 of 11

Re: Coming 2.8.8 logs

Posted: Thu Jul 04, 2024 2:10 pm
by Ezrael
Okay I will wait for your changes an stop until you post the solution =) Anyway! thanks for the support

Re: Coming 2.8.8 logs

Posted: Thu Jul 04, 2024 2:18 pm
by axew3
Ps if you do not want to remove/disable the extension, maybe you want to return back to the old code.
No problem, you can do this easily if you want, may let me know and i will indicate how to do it in 2 steps-
But my suggestion is to stay on new!

[EDITED]

Re: Coming 2.8.8 logs

Posted: Thu Jul 04, 2024 2:28 pm
by Ezrael
axew3 wrote: Thu Jul 04, 2024 2:18 pm Ps if you do not want to remove/disable the extension, maybe you want to return back to the old code.
No problem, you can do this easily if you want, may let me know and i will indicate how to do it in 2 steps-
But my suggestion is to stay on new!

[EDITED]
please fix the new code..

Re: Coming 2.8.8 logs

Posted: Thu Jul 04, 2024 5:48 pm
by axew3
So, i just reproduced the issue into my localhost test.
I did it a fix doing this:

open page-forum, and where there is this line of code:

Code: Select all

<iframe id="w3all_phpbb_iframe" style="width:1px;min-width:100%;*width:100%;border:0;" scrolling="no" src="<?php echo $w3all_url_to_cms; ?>"></iframe>
change into (substantially adding height:100vh; into the inline style:

Code: Select all

<iframe id="w3all_phpbb_iframe" style="height:100vh;width:1px;min-width:100%;*width:100%;border:0;" scrolling="no" src="<?php echo $w3all_url_to_cms; ?>"></iframe>
but the real fix i assume come into the javascript overall_footer.html added code:

where this code:

Code: Select all

   if( typeof t != 'undefined' || t != false )
   {
     //t.setAttribute("style", "position:fixed;top:0;min-width:100%;min-height:100%;padding:0");
     //document.getElementById("wrap").setAttribute("style", "position:relative;top:0%;min-height:100%;margin:10px");
   }
have been reverted/changed on this:

Code: Select all

   if( typeof t != 'undefined' || t != false )
   {
     t.setAttribute("style", "position:fixed;top:0;min-width:100%;min-height:100%;padding:0");
     document.getElementById("wrap").setAttribute("style", "position:relative;top:0%;min-height:100%;margin:10px");
   }
it should exist another way to make it work fine without this, i will check which it is.
Let me know when applied!

Re: Coming 2.8.8 logs

Posted: Thu Jul 04, 2024 6:18 pm
by Ezrael
Look's good! I will test is and keep you updated!

I reactivated the extension. I see the error but function is normal

Update: I have recognised is a distortion when I load the page. Also the forum doesn't run really smoothly. our Loading Screen disappears to early when the website isn't proper loaded.

When using bb Code the window is to big and the profile on the right starts to disappear.
Screenshot 2024-07-04 at 20.42.18.png
Screenshot 2024-07-04 at 20.42.18.png (293.9 KiB) Viewed 128 times

Re: Coming 2.8.8 logs

Posted: Thu Jul 04, 2024 6:41 pm
by axew3
Disable the extension like before. It is causing the problem!!!