If you want to move Currency selection dropdown from header to footer, you will need to following two files:
- catalog/controller/common/footer.php Please add following code
1 |
$data['currency'] = $this->load->controller('common/currency'); |
Now $currency is available inside catalog/view/theme/YOUR_THEME/template/common/footer.tpl so you can place it whatever you want in footer.tpl file i.e you will have place following code
1 |
<?php echo $currency; ?> |