check that you have setup not correctly into
overall_footer.html the
document.domain setting.
it is set as
https://tattooin.fr that is wrong
Code: Select all
document.domain = 'https://tattooin.fr'; // THIS IS MANDATORY! Set/Change this value to your domain (example: axew3.com (or leave localhost if on localhost))
while it need to be
Code: Select all
document.domain = 'tattooin.fr'; // THIS IS MANDATORY! Set/Change this value to your domain (example: axew3.com (or leave localhost if on localhost))
domain name setting do not need to be a link.
if after this the iframe still not resize to bottom (but should)
open WP template folder of your theme, than open created file for page forum, that you named
board in your case, so you'll search and open the file
page-board.php
inside it you'll find a line of code:
Code: Select all
// heightCalculationMethod: 'bodyOffset', // If page not resize to phpBB template bottom, un-comment (or change with one of others available resize methods)
remove // in front to activate a differen heightCalculationMethod for the iframe, so this line will become:
Code: Select all
heightCalculationMethod: 'bodyOffset', // If page not resize to phpBB template bottom, un-comment (or change with one of others available resize methods)
if still not resize, try out another of the available which are:
Code: Select all
values: 'bodyOffset' | 'bodyScroll' | 'documentElementOffset' | 'documentElementScroll' |
'max' | 'min' | 'grow' | 'lowestElement' | 'taggedElement'
check that you have setup not correctly into [b]overall_footer.html[/b] the [b]document.domain[/b] setting.
it is set as [i]https://tattooin.fr[/i] that is wrong
[code]document.domain = 'https://tattooin.fr'; // THIS IS MANDATORY! Set/Change this value to your domain (example: axew3.com (or leave localhost if on localhost)) [/code]
[b]while it need to be [/b]
[code]document.domain = 'tattooin.fr'; // THIS IS MANDATORY! Set/Change this value to your domain (example: axew3.com (or leave localhost if on localhost)) [/code]
domain name setting do not need to be a link.
if after this the iframe still not resize to bottom (but should)
open WP template folder of your theme, than open created file for page forum, that you named [b]board[/b] in your case, so you'll search and open the file
[b]page-board.php[/b]
inside it you'll find a line of code:
[code] // heightCalculationMethod: 'bodyOffset', // If page not resize to phpBB template bottom, un-comment (or change with one of others available resize methods) [/code]
remove // in front to activate a differen heightCalculationMethod for the iframe, so this line will become:
[code] heightCalculationMethod: 'bodyOffset', // If page not resize to phpBB template bottom, un-comment (or change with one of others available resize methods) [/code]
if still not resize, try out another of the available which are:
[code]values: 'bodyOffset' | 'bodyScroll' | 'documentElementOffset' | 'documentElementScroll' |
'max' | 'min' | 'grow' | 'lowestElement' | 'taggedElement'[/code]