私はmagentoのログアウトボタンに取り組んでいます。ログアウトボタンをクリックすると、ログアウトページになり、現在のページにリダイレクトされます。
ログアウトページのテンプレート
<div class="page-head">
<h3><?php echo $this->__("You're now Logged Out") ?></h3>
</div>
<p><?php echo $this->__('You have been successfully logged out and will be redirected to our homepage in 5 seconds.') ?></p>
<script type="text/javascript">
setTimeout(function(){ location.href = '<?php echo $this->getUrl() ?>'},5000);
</script>
そして、私が見つけたcustomer.xmlで
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
<reference name="content">
<block type="core/template" name="customer_logout" template="customer/logout.phtml"/>
</reference>
今、ログアウトページに行くのではなく、直接現在のページにページをリダイレクトしたいと思います。ご理解とご協力をお願いいたします。