minor usability issue in Select Payment Method?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 yıl önce
it is not possible to select the radion button by clicking the radio button text.
13 yıl önce
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
13 yıl önce
Thanks, I'll add this to codeplex
12 yıl önce
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.