frontend.checkout.postcoderequired CSS Fix

Posted By jcosmo Sat 28 Nov 2015
Rated 5 stars based on 1 vote.
Add to Favorites0
Author Message
jcosmo
 Posted Sat 28 Nov 2015
Supreme Being

Supreme Being - (9,073 reputation)Supreme Being - (9,073 reputation)Supreme Being - (9,073 reputation)Supreme Being - (9,073 reputation)Supreme Being - (9,073 reputation)Supreme Being - (9,073 reputation)Supreme Being - (9,073 reputation)Supreme Being - (9,073 reputation)Supreme Being - (9,073 reputation)

Group: Forum Members
Last Active: Tue 16 Feb 2016
Posts: 19, Visits: 117
When setting the frontend.checkout.postcoderequired configuration setting to require the Postal Code, Kartris correctly requires that an entry is made but doesn't update the label to visually indicate it is a required field...

I'd suggest changing the CustomerAddress.ascx.vb file, at line 72 to the following:
If KartSettingsManager.GetKartConfig("frontend.checkout.postcoderequired") = "y" AndAlso value = True Then
valZipCodeRequired.Enabled = True
lblPostcode.CssClass = "requiredfield"
Else
valZipCodeRequired.Enabled = False
lblPostcode.CssClass = ""
End If


This fixes the issue so that the label visually indicates it as a required field based on the configuration setting.
Paul Marked As Answer
 Posted Fri 1 Jan 2016
große Käse

große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)

Group: Administrators
Last Active: Fri 15 Sep 2023
Posts: 806, Visits: 2,737
Thanks, have added to the latest code, will be in the v2.9002 release.

--
If my post solves your issue, can you 'Mark as Answer' so it's easier for other users to find in future.

If you would like to be informed of new features, new releases, developments and occasional special bonuses, please sign up to our mailing list: http://bit.ly/19sKMZb
Paul Marked As Answer
 Posted Mon 8 Feb 2016
große Käse

große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)große Käse - (450,470 reputation)

Group: Administrators
Last Active: Fri 15 Sep 2023
Posts: 806, Visits: 2,737
Ok, have done the same in the core code.

--
If my post solves your issue, can you 'Mark as Answer' so it's easier for other users to find in future.

If you would like to be informed of new features, new releases, developments and occasional special bonuses, please sign up to our mailing list: http://bit.ly/19sKMZb

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top