PluginProbe
Tiered Pricing Table for WooCommerce / 6.1.0
Tiered Pricing Table for WooCommerce v6.1.0
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
tier-pricing-table / views / frontend / summary-table.php

summary-table.php in Tiered Pricing Table for WooCommerce 6.1.0, at views/frontend/summary-table.php

37 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Summary table
4 *
5 * @var int $productId
6 * @var string $title
7 * @var string $totalLabel
8 * @var string $eachLabel
9 */
10
11 if ( ! defined( 'WPINC' ) ) {
12 die;
13 }
14
15 do_action( 'tiered_pricing_table/product_page/before_table_summary', $totalLabel, $eachLabel );
16
17 ?>
18 <div class="clear"></div>
19 <div class="tier-pricing-summary-table tier-pricing-summary-table--hidden"
20 data-tier-pricing-table-summary
21 data-product-id="<?php echo esc_attr( $productId ); ?>">
22 <?php if ( $title ) : ?>
23 <h4 style=" margin: 20px 0;"><?php echo esc_html( $title ); ?></h4>
24 <?php endif; ?>
25 <div class="tier-pricing-summary-table__top">
26 <div><span data-tier-pricing-table-summary-product-qty></span>x</div>
27 <div data-tier-pricing-table-summary-product-price></div>
28 </div>
29 <div class="tier-pricing-summary-table__bottom">
30 <div><b><span data-tier-pricing-table-summary-product-name></span></b></div>
31 <div class="tier-pricing-summary-table__total" data-tier-pricing-table-summary-total>
32 </div>
33 </div>
34 </div>
35
36 <?php do_action( 'tiered_pricing_table/product_page/before_table_summary', $totalLabel, $eachLabel ); ?>
37