2.8.8 template integration improvements and 2.8.8 pre-logs

User avatar
Ezrael
w3 User
w3 User
Posts: 100
Joined: Wed Nov 15, 2023 9:11 pm
Contact:

Re: Coming 2.8.8 logs

Post by Ezrael »

Okay I will wait for your changes an stop until you post the solution =) Anyway! thanks for the support
User avatar
axew3
w3all User
w3all User
Posts: 2881
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Coming 2.8.8 logs

Post 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]
User avatar
Ezrael
w3 User
w3 User
Posts: 100
Joined: Wed Nov 15, 2023 9:11 pm
Contact:

Re: Coming 2.8.8 logs

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

Re: Coming 2.8.8 logs

Post 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!
User avatar
Ezrael
w3 User
w3 User
Posts: 100
Joined: Wed Nov 15, 2023 9:11 pm
Contact:

Re: Coming 2.8.8 logs

Post 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 127 times
Last edited by Ezrael on Thu Jul 04, 2024 6:42 pm, edited 2 times in total.
User avatar
axew3
w3all User
w3all User
Posts: 2881
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Coming 2.8.8 logs

Post by axew3 »

Disable the extension like before. It is causing the problem!!!
Post Reply