# tier-pricing-table/2.3.3/src/Integrations/Themes/Flatsome.php

Tiered Pricing Table for WooCommerce, version 2.3.3. 21 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/2.3.3/code/src/Integrations/Themes/Flatsome.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/2.3.3/raw/src/Integrations/Themes/Flatsome.php
- Modified: 2019-11-27T09:55:58+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/2.3.3/code/src/Integrations/Themes/Flatsome.php#L10-L20`.

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

class Flatsome {

	public function __construct() {
		add_action('wp_head', function () {
			?>
			<style>
				.price-rules-table tbody td {
					padding: 10px;
				}

				.price-rules-table th {
					padding-left: 10px;
				}
			</style>
			<?php
		});
	}
}

```
