Hi! I placed the code and it is still showing a price of $0.00. I have attached the code to see if I misplaced it.
<div class="add-info">
var currentCategoryId = Url.RequestContext.RouteData.Values["categoryId"];
if (currentCategoryId != null && Convert.ToInt32(currentCategoryId.ToString()) != varietals)
{
<div class="prices">
@if (!String.IsNullOrEmpty(Model.ProductPrice.OldPrice))
{
<span class="price old-price">@Model.ProductPrice.OldPrice</span>
}
<span class="price actual-price">@Model.ProductPrice.Price</span>
@if (Model.ProductPrice.DisplayTaxShippingInfo)
{
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>
}
</div>
}