OKU changes – remove ‘Site Map’ footer link

In /default/modern/layout/catalog.xml I’ve commented this:


<!-- commented by daniel
<reference name="footer_links">
<action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>
</reference>
-->

OKU changes – Redirect / to rings

In my_homepage.phtml in <head> section I’ve added the following code:

[javascript]

window.location=”http://dev.oku.no/smykker/ringer.html&#8221;;

[/javascript]

Update 20130129:

I find it better to use toku/template/page/html/header.html file with this code:

[php]

<?php if ($this->getIsHomePage()): header("Location: http://dev.oku.no/smykker/ringer.html&quot;)?>

[/php]