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

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

- Page: https://pluginprobe.com/plugins/tier-pricing-table/6.1.0/code/src/Integrations/Themes/Astra.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/6.1.0/raw/src/Integrations/Themes/Astra.php
- Modified: 2026-05-18T09:27:18+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/Astra.php#L10-L20`.

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

class Astra {

	public function __construct() {

		add_action( 'wp_head', function () {
			?>
			<!--Compatibility with Avada theme-->
			<style>
				.tiered-pricing-table tbody td {
					padding-left: 15px !important;
				}
			</style>
			<?php
		} );
	}
}

```
