Custom Product Control custom text in basket view

Posted By BORNXenon Fri 29 Aug 2014
Add to Favorites0
Author Message
BORNXenon
 Posted Fri 29 Aug 2014
Supreme Being

Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)

Group: Forum Members
Last Active: Mon 23 Apr 2018
Posts: 59, Visits: 291
I'm in the throws of getting my website ready to go live and have just spent an hour trying to figure out why my custom product control descriptions are no longer showing in the basket.

All I was getting was the name of the custom product and no description, the description being the important bit with the custom measurements, etc.

For anybody else struggling with the same issue, it appears that somewhere in between v2.5 and v2.6, the code at line 223 in BasketView.ascx was changed from:

<asp:Literal ID="litVersionName" runat="server" Text='<%# Server.HtmlEncode(Eval("VersionName")) %>' />



to:


<asp:Literal ID="litVersionName" runat="server" Text='<%# Server.HtmlEncode(Eval("VersionName")) %>' Visible='False' />



Remove the Visible='False' and all will work again as intended. Changing the code back doesn't appear to alter the Basket view for non-custom products so not entirely sure why it was changed in the first place.

Anyhow, hope the above helps someone.
Paul Marked As Answer
 Posted Fri 29 Aug 2014
große Käse

große Käse - (522,416 reputation)große Käse - (522,416 reputation)große Käse - (522,416 reputation)große Käse - (522,416 reputation)große Käse - (522,416 reputation)große Käse - (522,416 reputation)große Käse - (522,416 reputation)große Käse - (522,416 reputation)große Käse - (522,416 reputation)

Group: Administrators
Last Active: Tue 10 Sep 2024
Posts: 807, Visits: 2,748
Curious, not sure about that... I've updated the code in codeplex so this will be in the next release (2.7001).

--
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
BORNXenon
 Posted Fri 29 Aug 2014
Supreme Being

Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)Supreme Being - (34,923 reputation)

Group: Forum Members
Last Active: Mon 23 Apr 2018
Posts: 59, Visits: 291
Cheers Paul.Thought I was going mad this morning when I had no custom sizes showing up in the basket!!

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top