| Current Path : /home/nicedoo/www/wp-content/plugins/tier-pricing-table/src/Integrations/Themes/ |
| Current File : /home/nicedoo/www/wp-content/plugins/tier-pricing-table/src/Integrations/Themes/Electro.php |
<?php namespace TierPricingTable\Integrations\Themes;
class Electro {
public function __construct() {
add_action( 'wp_head', function () {
?>
<script>
function tieredPriceTableGetProductPriceContainer() {
return jQuery('form.cart').closest('.product-actions').find('.tiered-pricing-dynamic-price-wrapper');
}
</script>
<?php
} );
}
}