I have updated one of my testing sites to Joomla 3.9 Alpha, and now the tabbed display of Phoca Guestbook (current version) does not work anymore.
When I have set the for position to "Tab", then the tab for the messages is shown empty in frontend. When I then navigate to the tab for creating a new post, the messages are shown below the form.
When I compare the HTML of the Joomla 3.9 Alpha testing site with the one of the Joomla 3.8.12 live site, I see that on 3.9 Alpha the div with the posts is wrapped inside the div with the form, and so it inherits the "display: none" style.
Joomla 3.8.12 = ok:
Code: Select all
<div id="phocaguestbook" class="guestbook">
<div class="tabbable">
::before
<ul class="nav nav-tabs"> ... </ul>
<div class="tab-content">
<div id="pgbTabForm" class="tab-pane"> ...</div>
<div id="pgbTabPosts" class="tab-pane active" > ...</div>
</div>
::after
</div>
</div>
Code: Select all
<div id="phocaguestbook" class="guestbook">
<div class="tabbable">
::before
<ul class="nav nav-tabs"> ... </ul>
<div class="tab-content">
<div id="pgbTabForm" class="tab-pane">
<div class="well pgwell pgb_background pgb_sec_font"> ... </div>
<div class="tab-pane active" id="pgbTabPosts"> ... </div>
</div>
</div>
::after
</div>
</div>