How do you change the link for the 'continue' button at the bottom of new page created. It is currently linking to the 'home' page.
Thanks!
Well, that depends on what you want to do. If you just want to get rid of it, open catalog/view/theme/default/template/information/information.tpl and remove this code:
<div class="buttons">
<table>
<tr>
<td align="right"><a onclick="location='<?php echo $continue; ?>'" class="button"><span><?php echo $button_continue; ?></span></a></td>
</tr>
</table>
</div>
Or, if you want to change the destination of the Continue button, then open catalog/controller/information/information.php and change line 32:
$this->data['continue'] = $this->url->http('common/home');
by replacing 'common/home' with the page you want.
<div class="buttons">
<table>
<tr>
<td align="right"><a onclick="location='<?php echo $continue; ?>'" class="button"><span><?php echo $button_continue; ?></span></a></td>
</tr>
</table>
</div>
Or, if you want to change the destination of the Continue button, then open catalog/controller/information/information.php and change line 32:
$this->data['continue'] = $this->url->http('common/home');
by replacing 'common/home' with the page you want.
Thank you so much Jason IT WORKED! I thought it was in there, the only thing is that it doesn;t isolate it to a 'specific' page. In other words, that 'continue' button also exists in, about us, terms & conditions, privacy policy etc.... and it has taken effect for all. Do I have to delete the others or is there a way to change the link for a 'specific button on a specific page'. BTW, I was trying to redirect to 'contact us' page from a page I created.... It works beautifully!
Thanks again!
Thanks again!
Who is online
Users browsing this forum: Amazon [Bot] and 2 guests