Page 1 of 1

how to rearrange bottom ???

Posted: Thu Feb 18, 2016 5:17 pm
by vincent_angbt
i try search again and again, but cannot get how to re arrange this...
how i can move the Affiliate to first row instead of at 3rd place ???

Re: how to rearrange bottom ???

Posted: Thu Feb 18, 2016 5:40 pm
by Randem
Hi vincent_angbt,

The file you are looking for is catalog/view/theme/default/template/common/footer.tpl

Change it there.

Re: how to rearrange bottom ???

Posted: Thu Feb 18, 2016 5:43 pm
by vincent_angbt
Randem wrote:Hi vincent_angbt,

I don't quite understand but the file you are looking for is catalog/view/theme/default/template/common/footer.tpl

Change it there.
Hi, i mean like this...

Re: how to rearrange bottom ???

Posted: Thu Feb 18, 2016 5:54 pm
by Randem
You have the file location...

Re: how to rearrange bottom ???

Posted: Thu Feb 18, 2016 6:08 pm
by Burt65
The title is very deceiving... :laugh:

Re: how to rearrange bottom ???

Posted: Fri Feb 19, 2016 12:26 am
by ocart777
just as Randem's said it is on your "catalog/view/theme/default/template/common/footer.tpl"
open up this file and search for

Code: Select all

          <li><a href="<?php echo $manufacturer; ?>"><?php echo $text_manufacturer; ?></a></li>
          <li><a href="<?php echo $voucher; ?>"><?php echo $text_voucher; ?></a></li>
          <li><a href="<?php echo $affiliate; ?>"><?php echo $text_affiliate; ?></a></li>
          <li><a href="<?php echo $special; ?>"><?php echo $text_special; ?></a></li>
replace with

Code: Select all

          <li><a href="<?php echo $affiliate; ?>"><?php echo $text_affiliate; ?></a></li>
          <li><a href="<?php echo $voucher; ?>"><?php echo $text_voucher; ?></a></li>
          <li><a href="<?php echo $manufacturer; ?>"><?php echo $text_manufacturer; ?></a></li>
          <li><a href="<?php echo $special; ?>"><?php echo $text_special; ?></a></li>
you'll get the idea if you want to rearrange the other too, cheers