Display Product Prices Including and Excluding TAX

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 Jahre weitere
Hello,

I would like to to show two prices per product on product page. Price including tax and excluding tax. Is that possible to do, has anyone managed to do that?

If is possible to do, I would like to do that on specific product templates.

Thanks in advance for any help.
12 Jahre weitere
introsofter wrote:
Hello,

I would like to to show two prices per product on product page. Price including tax and excluding tax. Is that possible to do, has anyone managed to do that?

If is possible to do, I would like to do that on specific product templates.

Thanks in advance for any help.

If you do not have too many products you can add it as a new field for each product. You can do it addin a product specification (examole Price including Tax= $$$). For that you will have to have  the Product Specification Value Mod. Check:
https://www.nopcommerce.com/p/177/product-specification-value-mod.aspx
https://www.nopcommerce.com/boards/t/7288/extra-fields.aspx
11 Jahre weitere
eadameg wrote:

If you do not have too many products you can add it as a new field for each product. You can do it addin a product specification (examole Price including Tax= $$$). For that you will have to have  the Product Specification Value Mod. Check:
https://www.nopcommerce.com/p/177/product-specification-value-mod.aspx
https://www.nopcommerce.com/boards/t/7288/extra-fields.aspx

In v2.8 you can do it using custom value option for specification attributes
9 Jahre weitere
Does anyone have a better solution for this. I've tried and tested it using product specifications like it says here, but my client wants to be able to display both prices, including and excluding tax, together.

This is a common feature on other platforms it would seem, just puzzled as to why there is not a simple tick box for it in the admin?
9 Jahre weitere
Hi,

Did you solved how to Show 2 price together ?  Or anyone ?

Thanks .
9 Jahre weitere
Hi,

As i see from code :

var inclTax = EngineContext.Current.Resolve<IWorkContext>().TaxDisplayType == TaxDisplayType.IncludingTax;
             //tax info is already included in the price (incl/excl tax). that's why we display only shipping info here
             //of course, you can modify appropriate locales to include VAT info there
            <div class="tax-shipping-info">
                @T(inclTax ? "Products.Price.TaxShipping.InclTax" : "Products.Price.TaxShipping.ExclTax", Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("shippinginfo") }))
            </div>

How can i modify to Show 2 price same time ?
9 Jahre weitere
Hi

Anyone helps me about that ? How to Show 2 prices same time  . with tax and without tax .

thanks
9 Jahre weitere
Strange no one has idea . Or no one dont want to share about that .

Thanks .
9 Jahre weitere
Still no one help ?
9 Jahre weitere
hi,
we're also keen in this solution, any leads so far?

we want to do a IP based detection from country they're from, then decide to show the price value w or wo tax.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.