We would like to add notes/history to customer accounts, not orders.
Does anyone have code that will do this or know of a plugin? I understand this is somewhat of a large request and probably doesn't have an easy "turn on" switch.
For instance we have corporate customers we liked to handle in specific ways, it would be helpful to have these additional instructions on their account in a notes panel or something.
Account/Customer Notes
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 34
- Joined: Wed Feb 29, 2012 4:45 pm
Re: Account/Customer Notes
Take a look at this post:
viewtopic.php?f=47&t=6813&p=36235
It shows you how to add a single comment field to the customer. From there you could just have your admins add a date and their initials with the comment if you needed to track the comments.
viewtopic.php?f=47&t=6813&p=36235
It shows you how to add a single comment field to the customer. From there you could just have your admins add a date and their initials with the comment if you needed to track the comments.
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 34
- Joined: Wed Feb 29, 2012 4:45 pm
Re: Account/Customer Notes
The comment field looks promising, but I just looked at our test system and it's being populated by something and I don't want to overwrite existing data.
For instance, this text is in two of the members:
wUEsTAeyb77B
nX6YdfR9onvZ
Does anyone have an idea why ablecommerce would populate the ac_users.comment column with the text above?
For instance, this text is in two of the members:
wUEsTAeyb77B
nX6YdfR9onvZ
Does anyone have an idea why ablecommerce would populate the ac_users.comment column with the text above?
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: Account/Customer Notes
If I remember correctly- Able uses it to store an encrypted string when the customer requests a lost password email, then uses in to help verify security when they click on the link in the email to get to the page to enter a new password.
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Re: Account/Customer Notes
That's correct. I got cornered once trying to use that field.jmestep wrote:Able uses it to store an encrypted string when the customer requests a lost password email, then uses in to help verify security when they click on the link in the email to get to the page to enter a new password
The best way to handle it is to use the User.Settings() class. It's a key-dictionary pair of field name and field value. You could add a new key name for "Comments" and set the value to the textbox contents.
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 34
- Joined: Wed Feb 29, 2012 4:45 pm
Re: Account/Customer Notes
That was our next choice.
Thank you for the replies, we will use the user.settings().
Thank you for the replies, we will use the user.settings().