| 1 |
<?php |
| 2 |
/** |
| 3 |
* Summary table |
| 4 |
* |
| 5 |
* @var string $title |
| 6 |
* @var string $totalLabel |
| 7 |
* @var string $eachLabel |
| 8 |
*/ |
| 9 |
|
| 10 |
if ( ! defined( 'WPINC' ) ) { |
| 11 |
die; |
| 12 |
} |
| 13 |
|
| 14 |
do_action( 'tier_pricing_table/product_page/before_table_summary', $totalLabel, $eachLabel ); |
| 15 |
|
| 16 |
?> |
| 17 |
<div class="clear"></div> |
| 18 |
<div class="tier-pricing-summary-table tier-pricing-summary-table--hidden" data-tier-pricing-table-summary> |
| 19 |
<?php if ( $title ) : ?> |
| 20 |
<h4 style=" margin: 20px 0;"><?php echo esc_html( $title ); ?></h4> |
| 21 |
<?php endif; ?> |
| 22 |
<div class="tier-pricing-summary-table__top"> |
| 23 |
<div><span data-tier-pricing-table-summary-product-qty></span> x</div> |
| 24 |
<div data-tier-pricing-table-summary-product-price></div> |
| 25 |
</div> |
| 26 |
<div class="tier-pricing-summary-table__bottom"> |
| 27 |
<div><b><span data-tier-pricing-table-summary-product-name></span></b></div> |
| 28 |
<div class="tier-pricing-summary-table__total" data-tier-pricing-table-summary-total> |
| 29 |
</div> |
| 30 |
</div> |
| 31 |
</div> |
| 32 |
|
| 33 |
<?php do_action( 'tier_pricing_table/product_page/before_table_summary', $totalLabel, $eachLabel ); ?> |
| 34 |
|