Notifications
Clear all
Topic starter
05/11/2016 3:18 am
Hi,
When using Advanced Content Pagination, the sidebars don't appear after the text, only as sidebar on the last page. How to solve that problem. Thanks
giludi
Tom reacted
05/11/2016 6:32 pm
Please leave some URL where you use ACP and sidebar is broken.
Topic starter
10/11/2016 11:10 pm
10/11/2016 11:23 pm
That because you'v inserted [nextpage] shortcode in wrong place, you should make sure the open HTML tage and the close HTML tags are wrapped in the same page. You can check it in post editor Text mode.
e.g. this is a wrong usage:
[nextpage]
<div class="ax">
.........sometext..........
[/nextpage]
[nextpage]
</div>
<div class="bx">
.........sometext..........
</div>
[/nextpage]
And this is the correct usage:
[nextpage]
<div class="ax">
.........sometext..........
</div>
[/nextpage]
[nextpage]
<div class="bx">
.........sometext..........
</div>
[/nextpage]
Tom reacted
Topic starter
11/11/2016 10:00 pm
Thanks a lot