# tier-pricing-table/7.1.4/src/Integrations/Themes/Avada.php

Tiered Pricing Table for WooCommerce, version 7.1.4. 26 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/7.1.4/code/src/Integrations/Themes/Avada.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/7.1.4/raw/src/Integrations/Themes/Avada.php
- Modified: 2025-08-12T14:14:14+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/7.1.4/code/src/Integrations/Themes/Avada.php#L10-L20`.

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

class Avada {
	
	public function __construct() {
		add_action( 'wp_head', function () {
			?>
			<!--Compatibility with Avada theme-->
			<style>
				.tiered-pricing-table tbody tr {
					height: inherit !important;
				}

				.tiered-pricing-table tbody td {
					padding: 15px 0 15px 10px !important;
				}

				.tiered-pricing-table th {
					padding-left: 10px !important;
				}
			</style>
			<?php
		} );
	}
}

```
