Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.07 KB | None | 0 0
  1. <div class="form-item section-label">
  2.   <label for=""><?php print t('Contact details:');?></label>
  3. </div>
  4. <?php print render($form['account']['login']['mail']); ?>
  5. <?php print render($form['customer_profile_billing']['commerce_customer_address']
  6.     [$form['customer_profile_billing']['commerce_customer_address']['#language']][0]['phone_block']); ?>
  7.    
  8. <div class="form-item section-label">
  9.   <label for=""><?php print t('Personal data:'); ?></label>
  10. </div>
  11. <?php print render($form['customer_profile_billing']['commerce_customer_address']
  12.     [$form['customer_profile_billing']['commerce_customer_address']['#language']][0]['name_block']['last_name']); ?>
  13. <?php print render($form['customer_profile_billing']['commerce_customer_address']
  14.     [$form['customer_profile_billing']['commerce_customer_address']['#language']][0]['name_block']['first_name']); ?>
  15.    
  16. <div class="form-item section-label">
  17.   <label for=""><?php print t('Shipping address:'); ?></label>
  18. </div>
  19. <?php print render($form['customer_profile_billing']['commerce_customer_address']
  20.     [$form['customer_profile_billing']['commerce_customer_address']['#language']][0]['country']); ?>
  21. <?php print render($form['customer_profile_billing']['commerce_customer_address']
  22.     [$form['customer_profile_billing']['commerce_customer_address']['#language']][0]['locality_block']['administrative_area']); ?>
  23. <?php print render($form['customer_profile_billing']['commerce_customer_address']
  24.     [$form['customer_profile_billing']['commerce_customer_address']['#language']][0]['locality_block']['locality']); ?>
  25. <?php print render($form['customer_profile_billing']['commerce_customer_address']
  26.     [$form['customer_profile_billing']['commerce_customer_address']['#language']][0]['locality_block']['postal_code']); ?>
  27. <?php print render($form['customer_profile_billing']['commerce_customer_address']
  28.     [$form['customer_profile_billing']['commerce_customer_address']['#language']][0]['street_block']['thoroughfare']); ?>
  29.  
  30. <div class="form-item form-submit group">
  31.   <?php print render($form['buttons']['continue']); ?>
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement