PluginProbe
Tiered Pricing Table for WooCommerce / 2.3.4
Tiered Pricing Table for WooCommerce v2.3.4
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 2.3.4 All 90 releases
tier-pricing-table / views / frontend / summary-inline.php

summary-inline.php in Tiered Pricing Table for WooCommerce 2.3.4, at views/frontend/summary-inline.php

32 lines 994 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Summary inline
4 *
5 * @var string $totalLabel
6 * @var string $eachLabel
7 * @var string $title
8 */
9
10 if ( ! defined( 'WPINC' ) ) {
11 die;
12 }
13
14 do_action( 'tier_pricing_table/product_page/before_inline_summary', $totalLabel, $eachLabel );
15
16 ?>
17 <div class="clear"></div>
18 <div class="tier-pricing-summary-table tier-pricing-summary-table--inline tier-pricing-summary-table--hidden ?>"
19 data-tier-pricing-table-summary>
20 <?php if ( $title ) : ?>
21 <h4 style=" margin: 20px 0;"><?php echo esc_html( $title ); ?></h4>
22 <?php endif; ?>
23 <b><span class="tier-pricing-summary-table-inline__label"><?php echo esc_html( $totalLabel ); ?></span></b> <span
24 data-tier-pricing-table-summary-total></span>
25 <br>
26 <b><span class="tier-pricing-summary-table-inline__label"><?php echo esc_html( $eachLabel ); ?></span></b> <span
27 data-tier-pricing-table-summary-product-price></span>
28 <br>
29 </div>
30
31 <?php do_action( 'tier_pricing_table/product_page/after_inline_summary', $totalLabel, $eachLabel ); ?>
32