Page 1 of 2
Re: Entire board hidden
Posted: Fri Mar 25, 2016 6:33 pm
by axew3
returning home in short, but in the while, have you try to rebuild the template in wp_w3all?
please, just in case, try to re-download the plugin and overwrite all files.
Please let me know if all this do not solve.
Re: Entire board hidden
Posted: Fri Mar 25, 2016 9:26 pm
by axew3
the problem about jpg example and not online example, is that there isn't a way to understand what can going on.
The only thing i can do is re-test 1.1.5.
Re: Entire board hidden
Posted: Fri Mar 25, 2016 10:49 pm
by axew3
The problem seem to be that the overall_footer.html of your phpBB template, do not contain the necessary code to let run the iframe resizer.
follow
ALL this procedure
https://www.axew3.com/w3/2016/02/embed-p ... esponsive/
and you should be done. If still in problem let know.
Re: Entire board hidden
Posted: Sat Mar 26, 2016 8:09 am
by axew3
Hello
good morning to you.
Have you return the template to the original?
Because i've see that your phpBB overall_footer.html was not containing the necessary code.
p.s Recompiled template in phpBB acp after the modification?
Re: Entire board hidden
Posted: Sat Mar 26, 2016 8:16 am
by axew3
Look that this part is about the admin ACP panel, and you not need to confuse the hint about admin, that you should fix after.
You need now to edit the overall_footer.html of your active phpBB template.
ADD the code:
Code: Select all
<script type="text/javascript">
$(document).on("click", "a", function() {
var href = $(this).attr("href");
var w3allappend = href;
if ('parentIFrame' in window) window.parentIFrame.sendMessage(w3allappend);
});
</script>
<script type="text/javascript" src="./iframeResizer.contentWindow.min.js" defer></script>
After this, phpBB require to recompile the new template, or modifications to his template files not affect (to overall_footer.html in this case). Open phpBB ACP, and so under
Server Configuration -> Load settings -> Recompile stale style components set to YES and save. So re-set to NO and save other time the option. It is needed one time to load the template modifications on phpBB (any time you edit a phpBB template file), but this option should be ever set to NO on an online site to save server resources. It is normally set to yes only for testing purpose, or needed to apply done modifications to templates.
Re: Entire board hidden
Posted: Sat Mar 26, 2016 8:24 am
by axew3
Sann, the code above into your phpBB template source at
http://tfy-wow.eu/phpbb/ do not appear, you have not add it to the right overall_footer.html?