This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Implements hook_form_FORMID_alter(). | |
| */ | |
| // Checkout Form Alter | |
| function seedco_form_commerce_checkout_form_checkout_alter(&$form, &$form_state, $form_id) { | |
| // SECTION IN QUESTION | |
| $account_section = $form['account']; | |
| $form['customer_profile_billing']['commerce_customer_address']['und'][0]['account'] = $account_section; | |
| $form['customer_profile_billing']['commerce_customer_address']['und'][0]['account']['#weight'] = -99; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var charts = function () { | |
| // Chart.defaults.global.responsive = true; | |
| var data = { | |
| labels: ["Physical Body", "Emotions & Meaning", "Relationships", "Time", "Work/Career/Mission", "Finances", "Celebrate & Continue"], | |
| datasets: [ | |
| { | |
| label: "My First dataset", | |
| fillColor: "rgba(244, 232, 244,0.7)", | |
| strokeColor: "rgba(244, 232, 244,0.7)", | |
| pointColor: "rgba(244, 232, 244,0.7)", |
OlderNewer