about admin ACP in phpBB and iframe mode ... hint

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: about admin ACP in phpBB and iframe mode ... hint

about admin ACP in phpBB and iframe mode ... hint

by axew3 » Fri Mar 25, 2016 11:33 pm

When in iframe mode we go to open the ACP of phpBB, the iframe resizer do not show until the bottom, on many settings pages, the entire page.
Two simply hints to solve this.
Solution 1, as i do: after selected one element when on in admin ACP iframe mode, i just click the TAB button several times until the iframe auto height when elements on bottom are activated click after click.
Or the (maybe best) solution 2:
just follow the same procedure https://www.axew3.com/w3/2016/02/embed-p ... esponsive/ about iframe on overall_footer.html, but adding the code in:
phpBB3/adm/style/overall_footer.html template file.
also, the line:

Code: Select all

<script type="text/javascript" src="./iframeResizer.contentWindow.min.js" defer></script>
should be changed in favor of something like:

Code: Select all

<script type="text/javascript" src="../iframeResizer.contentWindow.min.js" defer></script>
to get the iframeResizer.contentWindow.min.js file available also for phpBB admin pages.

Top