Hi,
how can i add a pagination to top of the blog ? now there is a pagination only on bottom of the blog.!? thx a lot !
Hi,
how can i add a pagination to top of the blog ? now there is a pagination only on bottom of the blog.!? thx a lot !
Hi ak-muc,
Add the following in your includes>loop-index.php to where you would like the pagination to appear. Just make sure you don't put it inside any other <?php ?> tags as it has its own.
<?php
endif;
if(!isset($avia_config['remove_pagination'] ))
{
echo "<div class='".avia_layout_class('entry', false)." ".avia_offset_class('meta', false)." units'>";
echo avia_pagination();
echo "</div>";
}
?>
Regards,
Devin
ok thank you, but i receive errors everytime and dont know where exactly to put the code in. :(
Hi ak-muc,
It depends on where you would like it. This is what makes assisting visual changes individually a bit difficult. If you can specify exactly where you want it to appear, we can try and give you a specific area.
Regards,
Devin
You must log in to post.