teşekkürler @eka7a
benimde aklımda en son o var fakat sayfayı ya da özelliği tamamen kaldırma, silme gibi bir işlemin olup olmadığını merak ettim
sanırım yokmuş çok garip
evet geri iade bölümünü kapatma gibi bir ayar yokmuş resmi sitesinde aynı sorun için konu açılmış tema dosyalarından linklerin silinmesi önerilmiş belki yeni sürümlerde olur
I've tried to disable the returns myself and below is what I came up with. What I've done is take the clickable return options away from view in the footer, account, and my account sections. I'm a novice when it comes to this sort of thing so if you know of a better way I'd appreciate it if you would post it. Also if this is a good/acceptable way to accomplish this I hope the below helps someone who is looking for the same thing.
go to:
/catalog/view/theme/default/template/module/account.tpl
comment out:
<li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
go to:
/catalog/view/theme/default/template/account/account.tpl
comment out:
<li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
go to:
/catalog/view/theme/default/template/common/footer.tpl
comment out:
<li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li>
Thanks -
ayrıca catalog\controller\account\return.php dosyasına ana sayfaya yönlendirme kodu eklemekte fayda var
Kod:
<?php
header( 'Location: http://www.mysite.com/' ) ;
?>