Forum Replies Created

Viewing 1 replies (of 1 total)
  • I would like to show in this field tax name. I use 2 different taxes. how could this be possible?

    function cw_change_product_price_display( $price ) {
    $price .= ‘ <TAX NAME’;
    return $price;
    }
    add_filter( ‘woocommerce_get_price_html’, ‘cw_change_product_price_display’ );
    add_filter( ‘woocommerce_cart_item_price’, ‘cw_change_product_price_display’ );

    • This reply was modified 6 years, 1 month ago by ncfix.
Viewing 1 replies (of 1 total)