block.json
1 year ago
controller.php
1 year ago
index.asset.php
1 month ago
index.js
1 month ago
view.php
6 months ago
view.php
57 lines
| 1 | <div <?php echo wp_kses_data( |
| 2 | get_block_wrapper_attributes( |
| 3 | array( |
| 4 | 'style' => $style, |
| 5 | ) |
| 6 | ) |
| 7 | ); ?>> |
| 8 | <div class="sc-product-line-item"> |
| 9 | <div class="sc-product-line-item__item"> |
| 10 | <div class="sc-product-line-item__text"> |
| 11 | <div class="sc-product-line-item__text-details"> |
| 12 | <div class="sc-product-line-item__title"> |
| 13 | <span> |
| 14 | <?php echo wp_kses_post( $attributes['label'] ?? __( 'Total', 'surecart' ) ); ?> |
| 15 | </span> |
| 16 | </div> |
| 17 | </div> |
| 18 | </div> |
| 19 | |
| 20 | <div class="sc-product-line-item__suffix"> |
| 21 | <div class="sc-product-line-item__price"> |
| 22 | <div class="price"> |
| 23 | <span data-wp-text="state.checkout.subtotal_display_amount" data-wp-bind--hidden="state.isDiscountApplied"></span> |
| 24 | <span data-wp-text="state.checkout.total_display_amount" data-wp-bind--hidden="!state.isDiscountApplied"></span> |
| 25 | </div> |
| 26 | </div> |
| 27 | </div> |
| 28 | </div> |
| 29 | </div> |
| 30 | |
| 31 | <div |
| 32 | class="sc-product-line-item" |
| 33 | data-wp-bind--hidden="!state.checkout.is_installment" |
| 34 | > |
| 35 | <div class="sc-product-line-item__item"> |
| 36 | <div class="sc-product-line-item__text"> |
| 37 | <div class="sc-product-line-item__text-details"> |
| 38 | <div class="sc-product-line-item__description"> |
| 39 | <?php esc_html_e( 'Total Installments', 'surecart' ); ?> |
| 40 | <span data-wp-bind--hidden="!state.hasDiscountAmount" hidden> |
| 41 | <?php esc_html_e( '(before discounts)', 'surecart' ); ?> |
| 42 | </span> |
| 43 | </div> |
| 44 | </div> |
| 45 | </div> |
| 46 | |
| 47 | <div class="sc-product-line-item__suffix"> |
| 48 | <div class="sc-product-line-item__price"> |
| 49 | <div class="price"> |
| 50 | <span data-wp-text="state.checkout.full_display_amount"></span> |
| 51 | </div> |
| 52 | </div> |
| 53 | </div> |
| 54 | </div> |
| 55 | </div> |
| 56 | </div> |
| 57 |