jaredt
jaredt

Reputation: 41

Linking Magento Admin Accounts with a Customer Account

Does anyone know of an extension that will link a Magento admin account with a specific customer account?

Here's the scenario I'm trying to figure out:

I've searched through Magento connect and cannot find anything that does this. Anyone know of a way to do this?

Thanks.

Upvotes: 0

Views: 196

Answers (1)

Max
Max

Reputation: 8836

First of all, its possible to create orders through the backend. Go to Sales > Ordere and click "Create Order" in the top left.

Second of all, if you create customer usernames and passwords that are the same as on the Admin section, you could try to call Mage::getSingleton('customer/session')->login($username, $password); when an admin logs in. Haven't tried it though, but thats what happens in the loginPostAction of Mage_Customer_AccountController link.

Upvotes: 1

Related Questions