I think it is called a pager or page changer. It says 1 of 6 pages and a drop down box.
I need to add this to the bottom, but it looks like there is a increment problem.
thanks
you should edit appropriate template, where you want to make that change - it is located in catalog/template/{your template name - eg.default}/content/{template name}
for example in review.tpl, pager is following section:
then just place it somewhere you need (but pay attention on correct palcing inside all divs not to compeltely break your layout)
it should work
for example in review.tpl, pager is following section:
Code: Select all
<div class="right"><?php echo $entry_page; ?>
<form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data">
<select onchange="this.form.submit();">
<?php foreach ($pages as $pages) { ?>
<?php if ($pages['value'] == $page) { ?>
<option value="<?php echo $pages['value']; ?>" selected="selected"><?php echo $pages['text']; ?></option>
<?php } else { ?>
<option value="<?php echo $pages['value']; ?>"><?php echo $pages['text']; ?></option>
<?php } ?>
<?php } ?>
</select>
</form>
</div>
it should work

There are two versions of this demonstrated here http://forum.opencart.com/index.php/top ... ml#msg4174
Who is online
Users browsing this forum: No registered users and 7 guests