# tier-pricing-table/6.1.0/src/Integrations/Themes/Porto.php

Tiered Pricing Table for WooCommerce, version 6.1.0. 22 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/6.1.0/code/src/Integrations/Themes/Porto.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/6.1.0/raw/src/Integrations/Themes/Porto.php
- Modified: 2021-08-09T00:58:06+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.1.0/code/src/Integrations/Themes/Porto.php#L10-L20`.

```php
<?php namespace TierPricingTable\Integrations\Themes;

class Porto {

	public function __construct() {

		add_action( 'wp_head', function () {
			?>
			<script>
				jQuery(document).ready(function ($) {
					if (document.tieredPriceTable) {
						setTimeout(function () {
							document.tieredPriceTable.init();
						}, 1000)
					}
				});
			</script>
			<?php
		} );
	}
}

```
