Filter to get tiered price
-
Hi,
I’m using this filter to get the woocommerce product price:
add_filter( ‘woocommerce_get_price_html’, ‘custom_price’, 100, 2 );
function custom_price( $price, $product ) {
$my_price = $product->get_price();
…With your plugin activated is possible to get the tiered price when changing prices?
Thanks
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Filter to get tiered price’ is closed to new replies.