Multi-Page Links

General ShopSite user discussion
Post Reply
Germ502
Posts: 5
Joined: Mon Nov 05, 2007 8:04 am

Multi-Page Links

Post by Germ502 »

I am currently using the "Sidebar" Template but the multi-page links only show up on the bottom of the page. The "Rounded" template gives you multi-page links at the top and bottom. When I look at the code for the template "Rounded" I see that the
<!-- Multi-Page Links -->
[-- IF PAGE.ProductsPerPage "0" --]
# do nothing
[-- ELSE --] appears in two seperate places. Does anyone know if and where I would place this tag in the "Sidebar" template to get my multi-page links at the top and the bottom? Seems like wherever I put the tag just completely screws off the whole code.
BRITANUCK
Posts: 32
Joined: Wed Dec 05, 2007 10:47 am

Post by BRITANUCK »

Look for the piece of code that says something like this..

Code: Select all

[-- PrevNext --]
this is the shopsite pagination tag..

This tag is what creates the more page tab thing..

You can place this tag in any <div> or table cell and it will return the results in the top and bottom of your page...or anywhere you want it for that matter.

you can also add the additional noCenter claus to it so it doesn't centre the results, it will align them left or right depending on the parameters of the residing table cell or <div>


example i use on my site looks like this


Code: Select all

<tr>
  <td valign="top"><div id="prevnexttop">[-- PrevNext NoCenter --]</div></td>
</tr>

Any problems, let us know

Brit
Post Reply