| 1 |
<?php namespace TierPricingTable\Integrations\Themes; |
| 2 |
|
| 3 |
class Merchandiser { |
| 4 |
|
| 5 |
public function __construct() { |
| 6 |
add_action( 'wp_head', function () { |
| 7 |
?> |
| 8 |
|
| 9 |
<style> |
| 10 |
.price-rules-table tbody td { |
| 11 |
padding: 10px !important; |
| 12 |
} |
| 13 |
|
| 14 |
.price-rules-table th { |
| 15 |
padding-left: 10px !important; |
| 16 |
} |
| 17 |
</style> |
| 18 |
|
| 19 |
<script> |
| 20 |
function tieredPriceTableGetProductPriceContainer() { |
| 21 |
return jQuery('form.cart').closest('.product_infos').find('[data-tiered-price-wrapper]'); |
| 22 |
} |
| 23 |
</script> |
| 24 |
<?php |
| 25 |
} ); |
| 26 |
} |
| 27 |
} |
| 28 |
|