Help saving values from form
-
I have this store that is not supported anymore. If I need to customize it I have to dig through all the code. I want to add one more field to the table. I figured if I experiment with the values that work I could edit that. I don’t see how Company/Organization’,’Mycart is getting the value to ‘Customer\’s Company’,’Mycart’
function exportcolumns () { $prefix = "c."; return array( $prefix.'firstname' => __('Customer\'s First Name','Mycart'), $prefix.'lastname' => __('Customer\'s Last Name','Mycart'), $prefix.'email' => __('Customer\'s Email Address','Mycart'), $prefix.'phone' => __('Customer\'s Phone Number','Mycart'), $prefix.'company' => __('Customer\'s Company','Mycart'), $prefix.'marketing' => __('Customer\'s Marketing Preference','Mycart'), $prefix.'created' => __('Customer Created Date','Mycart'), $prefix.'modified' => __('Customer Last Updated Date','Mycart'), ); } //below from checkout page mycart('checkout','company','size=22&title='.__('Company/Organization','Mycart')); ?><label for="company"><?php _e('Company Organization','Mycart'); ?></label>
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Help saving values from form’ is closed to new replies.