# tier-pricing-table/6.4.0/src/Integrations/Themes/Shopkeeper.php

Tiered Pricing Table for WooCommerce, version 6.4.0. 27 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/6.4.0/code/src/Integrations/Themes/Shopkeeper.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/6.4.0/raw/src/Integrations/Themes/Shopkeeper.php
- Modified: 2024-09-11T11:44:28+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.4.0/code/src/Integrations/Themes/Shopkeeper.php#L10-L20`.

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

class Shopkeeper {

	public function __construct() {
		add_action( 'wp_head', function () {
			?>

			<style>
				.tiered-pricing-table tbody td {
					padding: 10px !important;
				}

				.tiered-pricing-table th {
					padding-left: 10px !important;
				}

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

```
