minor usability issue in Select Payment Method?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 13 años
it is not possible to select the radion button by clicking the radio button text.
Hace 13 años
Follow the next steps (I didn't test it)
1. Open \NopCommerceStore\Modules\CheckoutPaymentMethod.ascx file
2. Repalce
<nopCommerce:GlobalRadioButton runat="server" ID="rdPaymentMethod" Checked="false" GroupName="paymentMethodGroup" />
<%#Server.HtmlEncode(Eval("VisibleName").ToString()) %>

with
<nopCommerce:GlobalRadioButton runat="server" ID="rdPaymentMethod" Checked="false" GroupName="paymentMethodGroup" Text="<%#Server.HtmlEncode(Eval("VisibleName").ToString()) %>" />

3. Recompile the solution
Hace 13 años
Thanks, I'll add this to codeplex
Hace 12 años
Thanks.
I managed to add a clickable label by adding the code provided also on : https://www.nopcommerce.com/boards/t/7638/suggestion-change-the-globalradiobuttoncs.aspx
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.