I am new to nopcommerce, I have successfully implemented onepage checkout plugin for payment checkout in nopcommerce.
I want to just change payment info option. want to show radio buttons with image instead of default dropdown on payment cart option.
But it is giving error when customize paymentinfo.cshtml
"Error executing child request for handler 'System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerAsyncWrapper'"
Default Code:
@Html.DropDownListFor(model => model.CreditCardType, Model.CreditCardTypes, new { @class = "dropdownlists" })
Customized Code:
@foreach (var item in Model.CreditCardTypes)
{
<h1> @item.CreditCardType</h1>
OR
@Html.RadioButton(item.CreditCardType.ToString(), item.CreditCardType)
}