Sure. For instance, I can set an individual image for each category.
I have a category called "5.25 x 7.25" and within this category I have all my products listed.
When I click on the menu item, "Shop" it is a Hikashop Category listing. shows the image I chose for the category above the name of the category. When I click on the link, it shows all the products.
When it lists all the products I don't need it to show the image again, just the products listed as it does now at ilikeants.com.
As for the pagination, I can get it to show twice by setting
<?php if($this->config->get('pagination','top')=='bottom' && $this->params->get('show_limit') && $this->pageInfo->elements->total > $this->params->get('limit')){ ?>
to
<?php if($this->config->get('pagination','top')=='top' && $this->params->get('show_limit') && $this->pageInfo->elements->total > $this->params->get('limit')){ ?>
I just copied and pasted the top line. But then the functionality of it stops. I think it has something to do with having the same variable twice?