What is function in v6 replaces td_page_generator::wrap_start();

Posted in: Newspaper
Post count: 7

My developers created a custom search.php file in Newspaper v4, but when I upgraded to v6 on a development server, this function is not working.

echo td_page_generator::wrap_start();

It appears that this function is not available in v6. What function should I also to change?

Thanks for your help,

Jospeh

Post count: 7

I solved this myself.

td_page_generator::wrap_start(); needs to be replaced by

<div class=”td-main-content-wrap”>
<div class=”td-container”>
<div class=”td-pb-row”>

td_page_generator::wrap_end(); needs to be replaced by

</div> <!– /.td-pb-row –>
</div> <!– /.td-container –>
</div> <!– /.td-main-content-wrap –>

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.