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.
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-phpbb-into-wordpress-template-iframe-responsive/ about iframe on overall_footer.html, but adding the code in:
[b]phpBB3/adm/style/overall_footer.html[/b] template file.
also, the line:
[code]<script type="text/javascript" src="./iframeResizer.contentWindow.min.js" defer></script>[/code]
should be changed in favor of something like:
[code]<script type="text/javascript" src="../iframeResizer.contentWindow.min.js" defer></script>[/code]
to get the [i]iframeResizer.contentWindow.min.js[/i] file available also for phpBB admin pages.