- 14
Can you please tell me what the model is for Description.
I'm trying to add the Shipping description to the list of Shipping methods but can't figure out what the Description Model Element is. I tried adding the following below the <div> for Shipping Details
@if (!String.IsNullOrEmpty(shipping.Description))
{
<div class="method-description">
@Html.Raw(shipping.Description)
</div>
}
Thanks
Robert
I'm trying to add the Shipping description to the list of Shipping methods but can't figure out what the Description Model Element is. I tried adding the following below the <div> for Shipping Details
@if (!String.IsNullOrEmpty(shipping.Description))
{
<div class="method-description">
@Html.Raw(shipping.Description)
</div>
}
Thanks
Robert