I am building a custom single page check out process for an e-commerce site. I have taken advice from support and the forums on how to copy code from the existing controls for each cart step and combine them into one custom control. So far it is working except I cannot figure out how to remove "Step 1 of 1 - Step Description Here" from the top of the page. I have the class defined like this:
public partial class CMSModules_Ecommerce_Controls_ShoppingCart_CustomCheckOut : ShoppingCartStep
{
I was able to remove the step images with a property on the control. I was able to remove part of the "Step 1 of 1 - Step Description Here" caption using this:
ShoppingCartControl.CheckoutProcessSteps[ShoppingCartControl.CurrentStepIndex].Caption = "";
But it still says:
Step 1 of 1 -
It removed the part of that heading that described the step but how do I remove the "Step 1 of 1 -" part?
This seems like a simple thing so I apologize in advance if I am missing something stupid! Any help will be greatly appreciated.
Thanks,
Matt