customers
2 months ago
orders
4 months ago
subscriptions
3 months ago
add-edit-coupon.php
2 years ago
add-edit-plan-group.php
1 year ago
add-edit-plan.php
1 month ago
checkout-field-item.php
3 years ago
checkout-fields.php
3 years ago
coupons-page-sidebar.php
3 years ago
groups-page-sidebar.php
3 years ago
index.php
3 years ago
payment-method-list.php
3 years ago
plans-page-sidebar.php
3 years ago
tax-rates-setup.php
3 years ago
checkout-fields.php
49 lines
| 1 | <?php use ProfilePress\Core\Admin\SettingsPages\Membership\CheckoutFieldsManager; ?> |
| 2 | <div id="ppress-account-info-fields" class="widget-liquid-left"> |
| 3 | <div class="wp-clearfix" id="widgets-right"> |
| 4 | <div class="sidebars-column-3"> |
| 5 | <div class="widgets-holder-wrap"> |
| 6 | <div class="widgets-sortables"> |
| 7 | <div class="sidebar-name"> |
| 8 | <h2><?php esc_html_e('Account Information', 'wp-user-avatar') ?></h2> |
| 9 | </div> |
| 10 | <div class="sidebar-description"> |
| 11 | <p class="description"><?php esc_html_e('Add, remove and re-order account information fields displayed on the checkout page.', 'wp-user-avatar') ?></p> |
| 12 | </div> |
| 13 | <div class="ppress-checkout-fields"> |
| 14 | </div> |
| 15 | <div class="ppress-checkout-add-field"> |
| 16 | <p style="text-align:right"> |
| 17 | <?php CheckoutFieldsManager::checkout_field_addition_dropdown(); ?> |
| 18 | <button class="button"><?php esc_html_e('Add Field', 'wp-user-avatar') ?></button> |
| 19 | </p> |
| 20 | </div> |
| 21 | </div> |
| 22 | </div> |
| 23 | </div> |
| 24 | </div> |
| 25 | </div> |
| 26 | <div id="ppress-billing-address-fields" class="widget-liquid-left"> |
| 27 | <div class="wp-clearfix" id="widgets-right"> |
| 28 | <div class="sidebars-column-3"> |
| 29 | <div class="widgets-holder-wrap"> |
| 30 | <div class="widgets-sortables"> |
| 31 | <div class="sidebar-name"> |
| 32 | <h2><?php esc_html_e('Billing Address', 'wp-user-avatar') ?></h2> |
| 33 | </div> |
| 34 | <div class="sidebar-description"> |
| 35 | <p class="description"><?php esc_html_e('Add, remove and re-order billing address fields displayed on the checkout page.', 'wp-user-avatar') ?></p> |
| 36 | </div> |
| 37 | <div class="ppress-checkout-fields"> |
| 38 | </div> |
| 39 | <div class="ppress-checkout-add-field"> |
| 40 | <p style="text-align:right"> |
| 41 | <?php CheckoutFieldsManager::checkout_field_addition_dropdown('billing'); ?> |
| 42 | <button class="button"><?php esc_html_e('Add Field', 'wp-user-avatar') ?></button> |
| 43 | </p> |
| 44 | </div> |
| 45 | </div> |
| 46 | </div> |
| 47 | </div> |
| 48 | </div> |
| 49 | </div> |