|
shop:customer_profile CMS action
Base action for the Customer Profile page.
See AlsoSupported form fields
Generated PHP variables
Built-in AJAX handlers
Supported form field details¶ submit_profile form fieldA name for the submit button for saving the payment profile.
The Save submit button should have name submit_profile if you are implementing a regular POST form.
Alternatively you can use the shop:on_updateCustomerProfile handler.
¶ first_name form fieldSpecifies the customer first name. Required.
¶ last_name form fieldSpecifies the customer last name. Required.
¶ email form fieldSpecifies the customer email. Required.
¶ company form fieldSpecifies the customer's company name.
¶ phone form fieldSpecifies the phone number.
¶ billing_state_id form fieldAn identifier of the customer billing state.
¶ billing_country_id form fieldAn identifier of the customer billing country.
¶ billing_street_addr form fieldSpecifies the billing street address.
¶ billing_city form fieldSpecifies the billing city name.
¶ billing_zip form fieldSpecifies the billing ZIP/Postal code.
¶ shipping_first_name form fieldSpecifies the customer shipping first name. Required.
¶ shipping_last_name form fieldSpecifies the customer shipping last name. Required.
¶ shipping_company form fieldSpecifies the customer's sipping company name.
¶ shipping_phone form fieldSpecifies the phone shipping number.
¶ shipping_state_id form fieldAn identifier of the customer shipping state.
¶ shipping_country_id form fieldAn identifier of the customer shipping country.
¶ shipping_street_addr form fieldSpecifies the shipping street address.
¶ shipping_city form fieldSpecifies the shipping city name.
¶ shipping_zip form fieldSpecifies the shipping ZIP/Postal code.
¶ redirect form fieldAn optional URL to redirect the visitor's browser after updating the profile.
Note that if your copy of LemonStand is installed in a subdirectory, you need to use the root_url() function
in the redirect field value.
¶ flash form fieldA message to display on the target redirection page.
Use the flash_message() function on the target page to display the message.
Generated PHP variable details¶ countries variableDb_DataCollection $countries;
A collection of countries for populating the Billing Country and Shipping Country lists.
Each element in the collection is an object of the Shop_Country class.
¶ billing_states variableDb_DataCollection $billing_states;
A collection of states for populating the Billing State list.
Each element in the collection is an object of the Shop_CountryState class
¶ shipping_states variableDb_DataCollection $shipping_states;
A collection of states for populating the Shipping State list.
Each element in the collection is an object of the Shop_CountryState class
Built-in AJAX handlers details¶ shop:on_updateCustomerProfile AJAX handlerUpdates the customer profile.
|