To add custom customer attributes in Magento you need to insert information into three tables:
eav_attribute
customer_eav_attribute
customer_form_attribute
This was done on inspiradadreams.com.
I did this for abbeyvocations.com. I added the following files:
elements/files/edit/image.php
helpers/concrete/image.php
concrete/tools/files/image/process.php
concrete/js/jquery.corpzoom.js (add to dashboard header)
View the website below for details. Did this on payment drops.
http://www.igorkrasnykh.com/2009/02/24/removing-shipping-and-payment-steps/
Error
“Invalid calling object fckdialog.html, line 813 character 4”.
To fix this issue with the FCKeditor, all you need to do is:
Replace the code :
FCKTools.RegisterDollarFunction=function(A){A.$=A.document.getElementById;};
With:
FCKTools.RegisterDollarFunction = function( targetWindow ) {targetWindow.$ = function( id ){ return targetWindow.document.getElementById(id);};};
in the fckeditor/editor/js/fckeditorcode_ie.js
UPDATE atDefault SET value = 'KEY WORDS GO HERE' WHERE avID IN (SELECT avID FROM AttributeValues WHERE akID = 3)
* akID may not be 3. You can find the id in the AttributeKeys table. This also works for description and title.
Recent Comments