Trying to upgrade a custom Ecom soloution to DW8, and im having problems extending the OrderTemplateExtender.
Old code:
public override void ExtendTemplate(Templatev2.Template tmpl, TemplateExtenderRenderingState state) { new tags here }
New code:
public override void ExtendTemplate(Rendering.Template tmpl, TemplateExtenderRenderingState state) { new tags here }
But it gives me an error when trying to compile:
"no suitable method found to override..."
In the OrderTemplateExtender i can see they removed the following:
public virtual void ExtendTemplate(Template Template, TemplateExtenderRenderingState RenderingState);
So how do i Extend the default template in the new eCommerce version?