How can I remove pages such as account/reward, account/return and account/download. I dont have any links to them and removed/ uninstalled them in admin however by going straight to the url I can go to them.
Im not using them on my site and want to prevent users from being able to go to them
Simply add a redirect into the controller files.
ie. ../catalog/controller/account/download.php
at the top, change:
to just:
anf they will be redirected back to the account page or the login page (if not logged in).
ie. ../catalog/controller/account/download.php
at the top, change:
Code: Select all
if (!$this->customer->isLogged()) {
$this->session->data['redirect'] = $this->url->link('account/download', '', 'SSL');
$this->redirect($this->url->link('account/login', '', 'SSL'));
}
Code: Select all
$this->redirect($this->url->link('account/login', '', 'SSL'));
-
VIEW ALL EXTENSIONS * EXTENSION SUPPORT * WEBSITE * CUSTOM REQUESTS
If you are using default theme.
Go to catalog/view/theme/default/template/common/footer.tpl
You will find the return link there.
<li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
You need to remove this line.
Similarly Go to catalog/view/theme/default/template/account/account.tpl
You will find other 2 links here:
<li><a href="<?php echo $download; ?>"><?php echo $text_download; ?></a></li>
<li><a href="<?php echo $reward; ?>"><?php echo $text_reward; ?></a></li>
Remove them as well. Your work will be done.
Go to catalog/view/theme/default/template/common/footer.tpl
You will find the return link there.
<li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
You need to remove this line.
Similarly Go to catalog/view/theme/default/template/account/account.tpl
You will find other 2 links here:
<li><a href="<?php echo $download; ?>"><?php echo $text_download; ?></a></li>
<li><a href="<?php echo $reward; ?>"><?php echo $text_reward; ?></a></li>
Remove them as well. Your work will be done.
Opencart Extensions | Professional opencart support | Support Ticket | support@cartbinder.com
Who is online
Users browsing this forum: Bing [Bot] and 74 guests