# tier-pricing-table/6.5.0/views/frontend/shop-loop.php

Tiered Pricing Table for WooCommerce, version 6.5.0. 23 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/6.5.0/code/views/frontend/shop-loop.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/6.5.0/raw/views/frontend/shop-loop.php
- Modified: 2024-08-19T12:44:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tier-pricing-table/6.5.0/code/views/frontend/shop-loop.php#L10-L20`.

```php
<?php
	
	use TierPricingTable\PricingTable;
	
	/**
	 * Shop loop template
	 *
	 * @var string $classes
	 * @var WC_Product $product
	 * @var array $settings
	 * @var string $eachLabel
	 */
	
	
if ( ! defined( 'WPINC' ) ) {
	die;
}
?>

<div class="<?php echo esc_html( $classes ); ?>">
	<?php PricingTable::getInstance()->renderPricingTable( $product->get_id(), null, $settings ); ?>
</div>

```
