Change Titles on Public View .aspx Page

Is there a way to edit the mycart.aspx page to change where it says 'Dues' here in iMIS15 public view?

Anyone with advice on this is greatly appreciated.

Thank you.

Chris E.

 

 

 

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

I think the easiest way to

I think the easiest way to handle this would be to use JQuery to change the value of the title. I don't have an iMIS site + profile readily available with the Dues item, so I can't construct the JQuery, but it might look something like this:

	$(document).ready(function(){
  		$("#DuesDivID").empty().html('My new title for the Dues header');
	});

You could also create a custom .NET web control that changes the label, but I think JQuery would be easier to do.

And like most technical solutions, there are probably plenty of other ways to do the same thing.

Cheers,
James / Bursting Silver