Reputation: 702
Could you please help me to remove the Myaccount functionality in Magento? because I just want to create product inquiry site, in other word catalog website. I able remove the Myaccount links from the layout, but still can access via URL if someone knows it.
FYI: I'm currently using Magento 1.9.2.2v.
EDIT: I want to remove users/search engine accessing following page. Basically I want to disable myaccount feature as Magento has the ability to disable checkout (https://magento.stackexchange.com/questions/45802/how-can-i-disable-the-magento-shopping-cart ) and wishlist (http://inchoo.net/magento/disabling-wishlist-functionality/ ).
My intention is to add a redirection to the .htaccess file and update robot.txt, but I'm really looking to do this in a correct way.
Upvotes: 0
Views: 307
Reputation: 773
In app\etc\modules\Mage_All.xml
Change
<Mage_Customer>
<active>true</active>
<codePool>core</codePool>
<depends>
<Mage_Eav/>
<Mage_Dataflow/>
<Mage_Directory/>
</depends>
</Mage_Customer>
by
<Mage_Customer>
<active>false</active>
<codePool>core</codePool>
<depends>
<Mage_Eav/>
<Mage_Dataflow/>
<Mage_Directory/>
</depends>
</Mage_Customer>
Upvotes: 0
Reputation: 3427
Login into admin panel
Goto -> System -> Configuration -> Advance
In that Module Disable the "Mage_Customer" It will disable all customer access.
Upvotes: 2